modarb-be / src /lib /responses /json-responses-params.d.ts
moahmedwafy's picture
refactors
e9affa5
raw
history blame
404 Bytes
export interface IJSONSuccessResponseProps {
status?: number;
message?: string;
data: Record<string, any> | Record<string, any>[];
meta?: {
total: number;
page: number;
perPage: number;
};
}
export interface IJSONErrorResponseProps {
status?: number;
message?: string;
error: string;
}
export interface IJSONValidationErrorResponseProps {
errors: Record<string, any>[];
}