幻雨堂
2024-02-22 9ef37b0d640e8ab77459c2a816dab96c2d7b9511
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;
  }
}