UNPKG

fluent-ts-validator

Version:
14 lines (13 loc) 371 B
import { PropertyValidator } from "../PropertyValidator"; /** * Validates if given date is after specified date. * * @export * @class IsAfterValidator * @implements {PropertyValidator<Date>} */ export declare class IsAfterValidator implements PropertyValidator<Date> { private date; constructor(date: Date); isValid(input: Date | undefined): boolean; }