UNPKG

ng19-date-picker

Version:

https://github.com/vlio20/angular-datepicker

13 lines (12 loc) 290 B
import { IDate } from '../common/models/date.model'; export interface IDay extends IDate { currentMonth?: boolean; prevMonth?: boolean; nextMonth?: boolean; currentDay?: boolean; disabled?: boolean; } export interface IDayEvent { day: IDay; event: MouseEvent; }