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