UNPKG

332 BTypeScriptView Raw
1import { ValidationOptions } from '../ValidationOptions';
2export declare const IS_DATE = "isDate";
3/**
4 * Checks if a given value is a date.
5 */
6export declare function isDate(value: unknown): boolean;
7/**
8 * Checks if a value is a date.
9 */
10export declare function IsDate(validationOptions?: ValidationOptions): PropertyDecorator;