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