@nestjs/common
Version:
Nest - modern, fast, powerful node.js web framework (@common)
29 lines (28 loc) • 619 B
TypeScript
/**
* Validation error description.
* @see https://github.com/typestack/class-validator
*/
export interface ValidationError {
/**
* Object that was validated.
*/
target: Object;
/**
* Object's property that haven't pass validation.
*/
property: string;
/**
* Value that haven't pass a validation.
*/
value: any;
/**
* Constraints that failed validation with error messages.
*/
constraints: {
[type: string]: string;
};
/**
* Contains all nested validation errors of the property.
*/
children: ValidationError[];
}