chore: type

This commit is contained in:
2025-08-07 21:33:42 +08:00
parent 5423447b19
commit ee6c37f0ae

16
src/axios.d.ts vendored
View File

@@ -1,10 +1,10 @@
export interface Result<T = unknown> { export interface Result<T = unknown> {
code: number code: number;
data: T data: T;
errorMsg: string errorMsg: string;
extra: unknown extra: unknown;
isSuccess: boolean isSuccess: boolean;
msg: string msg: string;
path?: string path?: string;
timestamp: string timestamp: string;
} }