xiangpei
2024-11-20 b86a628d1d14a3eb9da43198f5e48e6179b88e87
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;
  }
}