Files
leim-tools/models/Errors.ts
2024-11-24 19:56:00 +01:00

15 lines
236 B
TypeScript

export interface ValidationError {
path: (string | number)[]
message: string
code: string
}
export interface APIError {
statusCode: number
statusMessage: string
message: string
data: {
errors: ValidationError[]
}
}