UNPKG

ngx-jalali-date-picker

Version:

This is a configurable date-picker build for Angular applications. Supports latest (Angular 18) version. This date-picker is based on ng2-date-piker and ngx-jalali-date-picker date pickers.

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; }