modarb-be / src /lib /responses /json-responses.d.ts
moahmedwafy's picture
refactors
e9affa5
raw
history blame
489 Bytes
interface IJSONResponse {
status: number;
message: string;
}
export interface IJSONSuccessResponse extends IJSONResponse {
data: Record<string, any> | Record<string, any>[];
meta?: {
total: number;
page: number;
perPage: number;
};
}
export interface IJSONErrorResponse extends IJSONResponse {
error: string;
}
export interface IJSONValidationErrorResponse extends IJSONResponse {
status: 422;
message: "Validation Error";
errors: Record<string, any>[];
}