UNPKG

424 BTypeScriptView Raw
1import { ValidationOptions } from '../ValidationOptions';
2export declare const MIN_DATE = "minDate";
3/**
4 * Checks if the value is a date that's after the specified date.
5 */
6export declare function minDate(date: unknown, minDate: Date): boolean;
7/**
8 * Checks if the value is a date that's after the specified date.
9 */
10export declare function MinDate(date: Date, validationOptions?: ValidationOptions): PropertyDecorator;