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