1 | /**
|
2 | * Validation types.
|
3 | */
|
4 | export declare class ValidationTypes {
|
5 | static CUSTOM_VALIDATION: string;
|
6 | static NESTED_VALIDATION: string;
|
7 | static PROMISE_VALIDATION: string;
|
8 | static CONDITIONAL_VALIDATION: string;
|
9 | static WHITELIST: string;
|
10 | static IS_DEFINED: string;
|
11 | /**
|
12 | * Checks if validation type is valid.
|
13 | */
|
14 | static isValid(type: string): boolean;
|
15 | }
|