video-flow-toon/src/lib/responseFormat.ts
ACT丶流星雨 0798ae03ee no message
2026-01-29 18:28:32 +08:00

24 lines
414 B
TypeScript

export interface ApiResponse {
code: number;
data: any;
message: string;
}
// 成功回调
export function success<T>(data: T | null = null, message: string = "成功"): ApiResponse {
return {
code: 200,
data,
message,
};
}
// 客户端错误响应
export function error<T>(message: string = "", data: T | null = null): ApiResponse {
return {
code: 400,
data,
message,
};
}