@mantine/dates
Version:
Calendars, date and time pickers based on Mantine components
9 lines (8 loc) • 318 B
TypeScript
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 {};