UNPKG

441 BTypeScriptView Raw
1import { MonthsCalendarViewModel } from '../models';
2export interface FlagMonthCalendarOptions {
3 isDisabled: boolean;
4 minDate: Date;
5 maxDate: Date;
6 hoveredMonth: Date;
7 selectedDate: Date;
8 selectedRange: Date[];
9 displayMonths: number;
10 monthIndex: number;
11}
12export declare function flagMonthsCalendar(monthCalendar: MonthsCalendarViewModel, options: Partial<FlagMonthCalendarOptions>): MonthsCalendarViewModel;