zhanghua
2024-11-06 2552d79ce9870f32bd2e35085b450548f9b538c8
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;
  }
}