This repository has been archived on 2026-05-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ndm-web-client/src/axios.d.ts
T
2025-08-13 01:36:30 +08:00

11 lines
181 B
TypeScript

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