import { ValidationErrorExceptionMessage } from '../types/validation-error-exception-message.type'; export interface ValidationError { target?: Record; property: string; value?: any; children?: ValidationError[]; contexts?: { [type: string]: any; }; constraints?: { [type: string]: ValidationErrorExceptionMessage; }; }