1 | import { ValidationOptions } from '../ValidationOptions';
|
2 | export declare const IS_NOT_EMPTY = "isNotEmpty";
|
3 | /**
|
4 | * Checks if given value is not empty (!== '', !== null, !== undefined).
|
5 | */
|
6 | export declare function isNotEmpty(value: unknown): boolean;
|
7 | /**
|
8 | * Checks if given value is not empty (!== '', !== null, !== undefined).
|
9 | */
|
10 | export declare function IsNotEmpty(validationOptions?: ValidationOptions): PropertyDecorator;
|