mirror of
https://gitee.com/JavaLionLi/plus-ui.git
synced 2026-09-13 15:53:42 +08:00
9 lines
135 B
TypeScript
9 lines
135 B
TypeScript
declare module 'axios' {
|
|
interface AxiosResponse<T = any> {
|
|
code: number;
|
|
msg: string;
|
|
rows: T;
|
|
total: number;
|
|
}
|
|
}
|