Files
stockhome/backend/misc/types.ts
T

8 lines
172 B
TypeScript

export type ErrorCode = readonly [code: string, message: string];
export interface Response {
success: boolean;
code: string;
data: any;
message: string;
}