@mantine/dates
Version:
Calendars, date and time pickers based on Mantine components
9 lines (8 loc) • 309 B
TypeScript
import { DateStringValue } from '../../../types';
interface IsMonthDisabledInput {
month: DateStringValue;
minDate: DateStringValue | undefined;
maxDate: DateStringValue | undefined;
}
export declare function isMonthDisabled({ month, minDate, maxDate }: IsMonthDisabledInput): boolean;
export {};