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