ngx-bootstrap
Version:
Native Angular Bootstrap Components
13 lines (12 loc) • 422 B
TypeScript
import { DaysCalendarViewModel } from '../models';
export interface FlagDaysCalendarOptions {
isDisabled: boolean;
minDate: Date;
maxDate: Date;
hoveredDate: Date;
selectedDate: Date;
selectedRange: Date[];
displayMonths: number;
monthIndex: number;
}
export declare function flagDaysCalendar(formattedMonth: DaysCalendarViewModel, options: FlagDaysCalendarOptions): DaysCalendarViewModel;