Files
reflector/www/app/api/models/ValidationError.ts

6 lines
97 B
TypeScript

export type ValidationError = {
loc: Array<string | number>;
msg: string;
type: string;
};