UNPKG

novo-elements

Version:

Bullhorn's NOVO Element Repository for Angular 2

15 lines (14 loc) 431 B
import { EventEmitter, TemplateRef } from '@angular/core'; import { WeekDay } from '../../../utils/calendar-utils/CalendarUtils'; export declare class NovoCalendarMonthHeaderElement { viewDate: Date; days: WeekDay[]; locale: string; customTemplate: TemplateRef<any>; /** * Called when the view date is changed */ viewDateChange: EventEmitter<Date>; prevMonth(): void; nextMonth(): void; }