axios.d.ts 146 B

123456789
  1. export {};
  2. declare module 'axios' {
  3. interface AxiosResponse<T = any> {
  4. code: number;
  5. msg: string;
  6. rows: T;
  7. total: number;
  8. }
  9. }