axios.d.ts 256 B

12345678910111213
  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. }