UNPKG

369 BTypeScriptView Raw
1export interface ValidationOptions {
2 /**
3 * An array of strings. All properties that are in this array will not be validated
4 */
5 skip?: string[];
6 /**
7 * An array of strings. Only the properties that are in this array will be validated
8 */
9 fields?: string[];
10 /**
11 * Run before and after validate hooks.
12 * @default true.
13 */
14 hooks?: boolean;
15}