UNPKG

ngx-obelisco-example

Version:

Componentes funcionales y reutilizables para Angular.

13 lines (12 loc) 314 B
import { NgbDateStruct } from '@ng-bootstrap/ng-bootstrap'; export interface DatePickerItem { id?: string; date?: DatepickerDate; task?: DatePickerTask[]; } export interface DatePickerTask { title?: string; type?: string; } export interface DatepickerDate extends NgbDateStruct { }