UNPKG

class-validator

Version:

Decorator-based property validation for classes.

26 lines (25 loc) 837 B
import { ValidationArguments } from '../validation/ValidationArguments'; /** * Options used to pass to validation decorators. */ export interface ValidationOptions { /** * Specifies if validated value is an array and each of its items must be validated. */ each?: boolean; /** * Error message to be used on validation fail. * Message can be either string or a function that returns a string. */ message?: string | ((validationArguments: ValidationArguments) => string); /** * Validation groups used for this validation. */ groups?: string[]; /** * Indicates if validation must be performed always, no matter of validation groups used. */ always?: boolean; context?: any; } export declare function isValidationOptions(val: any): val is ValidationOptions;