mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-07-04 04:42:08 +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[]
|
|
}
|