2020-09-03 13:32:52 +08:00

11 lines
209 B
TypeScript

export interface APIBaseResponse {
code: number
cookie: string
}
export interface RequestBaseConfig {
cookie?: string
realIP?: string // IPv4/IPv6 filled in X-Real-IP
proxy?: string // HTTP proxy
}