mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-15 00:15:09 +08:00
11 lines
170 B
TypeScript
11 lines
170 B
TypeScript
import axios from 'axios';
|
|
|
|
declare module 'axios' {
|
|
export interface AxiosResponse<T = any> {
|
|
code: number;
|
|
msg: string;
|
|
rows: T;
|
|
total: number;
|
|
}
|
|
}
|