mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 15:07:33 +08:00
12 lines
252 B
TypeScript
12 lines
252 B
TypeScript
export interface ApiResponse<T> {
|
|
readonly success: boolean;
|
|
readonly result: T;
|
|
}
|
|
|
|
export interface ErrorResponse {
|
|
readonly success: boolean;
|
|
readonly errorCode: number;
|
|
readonly errorMessage: string;
|
|
readonly path: string;
|
|
}
|