1 | /** @module validate */
|
2 | /**
|
3 | * Types of validation results generated by validation schemas.
|
4 | *
|
5 | * @see [[ValidationResult]]
|
6 | */
|
7 | export declare enum ValidationResultType {
|
8 | /** General information (not an error). */
|
9 | Information = 0,
|
10 | /** Warning about something suspecious. In strict mode is treated as error */
|
11 | Warning = 1,
|
12 | /** Validation error. */
|
13 | Error = 2
|
14 | }
|