UNPKG
ng2-date-picker-pda-forked
Version:
latest (2.4.0)
2.4.0
github.com/piotr-dajlido/angular-datepicker
piotr-dajlido/angular-datepicker
ng2-date-picker-pda-forked
/
day-calendar
/
day.model.d.ts
12 lines
(11 loc)
•
266 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
IDate
}
from
'../common/models/date.model'
;
export
interface
IDay
extends
IDate
{
currentMonth
?:
boolean
;
prevMonth
?:
boolean
;
nextMonth
?:
boolean
;
currentDay
?:
boolean
; }
export
interface
IDayEvent
{
day
:
IDay
;
event
:
MouseEvent
; }