UNPKG

pip-services3-commons-node

Version:
15 lines (14 loc) 392 B
/** @module validate */ /** * Types of validation results generated by validation schemas. * * @see [[ValidationResult]] */ export enum ValidationResultType { /** General information (not an error). */ Information = 0, /** Warning about something suspecious. In strict mode is treated as error */ Warning = 1, /** Validation error. */ Error = 2 }