UNPKG

@mantine/dates

Version:

Calendars, date and time pickers based on Mantine components

9 lines (8 loc) 318 B
import { DateStringValue } from '../../../types'; interface IsYearDisabledInput { year: DateStringValue; minDate: DateStringValue | Date | undefined; maxDate: DateStringValue | Date | undefined; } export declare function isYearDisabled({ year, minDate, maxDate }: IsYearDisabledInput): boolean; export {};