mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-07-05 21:58:56 +08:00
6 lines
126 B
TypeScript
6 lines
126 B
TypeScript
export interface Response<T> {
|
|
status: number // The Http Response Code
|
|
body: T // API Response body
|
|
cookie: string[]
|
|
}
|