UNPKG

404 BTypeScriptView Raw
1import { ValidationOptions } from '../ValidationOptions';
2export declare const IS_EMPTY = "isEmpty";
3/**
4 * Checks if given value is empty (=== '', === null, === undefined).
5 */
6export declare function isEmpty(value: unknown): boolean;
7/**
8 * Checks if given value is empty (=== '', === null, === undefined).
9 */
10export declare function IsEmpty(validationOptions?: ValidationOptions): PropertyDecorator;