UNPKG
ngx-nebular-formly
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
0.0.3
0.0.2
0.0.1
Ngx Formly integration for Nebular UI
github.com/vijhhh2/Nebular-Formly
vijhhh2/Nebular-Formly
ngx-nebular-formly
/
lib
/
date-picker
/
date-picker.type.d.ts
11 lines
(10 loc)
•
300 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
FieldType
}
from
'@ngx-formly/core'
;
export
declare
enum
DatePickers
{
RANGE_PICKER
=
0
,
DATE_PICKER
=
1
,
DATE_TIME_PICKER
=
2
}
export
declare
class
DatePickerTypeComponent
extends
FieldType
{
DatePickers
:
typeof
DatePickers
;
onDateChange
(
event
:
any
):
void
; }