1 | import { ValidationOptions } from '../ValidationOptions';
|
2 | export declare const IS_DEFINED: string;
|
3 | /**
|
4 | * Checks if value is defined (!== undefined, !== null).
|
5 | */
|
6 | export declare function isDefined(value: any): boolean;
|
7 | /**
|
8 | * Checks if value is defined (!== undefined, !== null).
|
9 | */
|
10 | export declare function IsDefined(validationOptions?: ValidationOptions): PropertyDecorator;
|