11 lines
160 B
TypeScript
11 lines
160 B
TypeScript
![]() |
import axios from 'axios';
|
||
|
|
||
|
declare module 'axios' {
|
||
|
export interface AxiosResponse<T = any> {
|
||
|
code: number;
|
||
|
msg: string;
|
||
|
rows: T;
|
||
|
total: number;
|
||
|
}
|
||
|
}
|