19 lines
424 B
TypeScript
19 lines
424 B
TypeScript
export interface ApiErrorResponse {
|
|
error: string;
|
|
status: number;
|
|
}
|
|
|
|
export interface MetaResponse {
|
|
ok: true;
|
|
service: string;
|
|
timestamp: string;
|
|
version: string;
|
|
}
|
|
|
|
export type RuntimeMode = "development" | "production" | "test";
|
|
|
|
// ==========================================
|
|
// 在此定义你的业务类型
|
|
// 前后端共享的类型都放在这个文件中
|
|
// ==========================================
|