UNPKG

307 BTypeScriptView Raw
1import { ValidationOptions } from '../ValidationOptions';
2/**
3 * Ignores the other validators on a property when the provided condition function returns false.
4 */
5export declare function ValidateIf(condition: (object: any, value: any) => boolean, validationOptions?: ValidationOptions): PropertyDecorator;