axios.d.ts 237 B

123456789101112
  1. import axios from 'axios'
  2. declare module 'axios' {
  3. interface AxiosRequestConfig {
  4. noToast?: boolean
  5. noAuth?: boolean
  6. download?: boolean
  7. }
  8. interface AxiosRequestHeaders {
  9. Authorization: string
  10. time: number
  11. }
  12. }