base.d.ts 209 字节
Newer Older
A
a632079 已提交
1 2 3 4 5 6 7 8 9 10
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
}