import { FishDateStruct } from './fish-date-struct'; /** * Context for the datepicker 'day' template in case you want to override the default one */ export interface DayTemplateContext { /** * Month currently displayed by the datepicker */ currentMonth: number; /** * Date that corresponds to the template */ date: FishDateStruct; /** * True if current date is disabled */ disabled: boolean; /** * True if current date is selected */ selected: boolean; }