base.d.ts 236 字节
Newer Older
A
a632079 已提交
1 2 3
export interface APIBaseResponse {
  code: number
  cookie: string
A
a632079 已提交
4
  [index: string]: unknown
A
a632079 已提交
5 6 7 8 9 10 11
}

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