UNPKG

@mantine/dates

Version:

Calendars, date and time pickers based on Mantine components

9 lines (8 loc) 320 B
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 {};