UNPKG

ngx-obelisco-example

Version:

Componentes funcionales y reutilizables para Angular.

13 lines (12 loc) 284 B
import { ActiveDayTypes } from './colors.models'; export interface ActiveDay { day?: number | number[]; title?: string; url?: string; type?: ActiveDayTypes; isDisabled?: boolean; } export interface CalendarDate { month: number; year: number; }