ottoman
Version:
Ottoman Couchbase ODM
8 lines (7 loc) • 344 B
TypeScript
export interface DateOption {
val: Date;
message: string;
}
export type DateFunction = () => Date | DateOption;
export declare const validateMinDate: (value: Date, min: Date | DateOption, property: string) => string | void;
export declare const validateMaxDate: (value: Date, max: Date | DateOption, property: string) => string | void;