mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
12 lines
236 B
TypeScript
12 lines
236 B
TypeScript
export interface APIBaseResponse {
|
|
code: number
|
|
cookie: string
|
|
[index: string]: unknown
|
|
}
|
|
|
|
export interface RequestBaseConfig {
|
|
cookie?: string
|
|
realIP?: string // IPv4/IPv6 filled in X-Real-IP
|
|
proxy?: string // HTTP proxy
|
|
}
|