qirong
2023-12-07 b3987b1ccb0bb810d88c1538ef2066ca96a075b7
1
2
3
4
5
6
7
8
9
10
import axios from 'axios';
 
declare module 'axios' {
  export interface AxiosResponse<T = any> {
    code: number;
    msg: string;
    rows: T;
    total: number;
  }
}