mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 19:00:56 +00:00
9 lines
320 B
TypeScript
9 lines
320 B
TypeScript
import { DateStringValue } from '../../../types';
|
|
interface IsDateValid {
|
|
date: DateStringValue | Date;
|
|
maxDate: DateStringValue | Date | null | undefined;
|
|
minDate: DateStringValue | Date | null | undefined;
|
|
}
|
|
export declare function isDateValid({ date, maxDate, minDate }: IsDateValid): boolean;
|
|
export {};
|