mirror of
https://github.com/ragestudio/comty.js.git
synced 2025-06-09 18:44:18 +00:00
11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
import request from "../../../request"
|
|
|
|
export default async (id: String) => {
|
|
const response = await request({
|
|
method: "GET",
|
|
url: `/music/releases/${id}/data`,
|
|
})
|
|
|
|
// @ts-ignore
|
|
return response.data
|
|
} |