Spaces:
Sleeping
Sleeping
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>[]; | |
} | |