UNPKG

angular-calendar

Version:

A calendar component that can display events on a month, week or day view

32 lines (31 loc) 568 B
import { EventEmitter } from '@angular/core'; /** * Change the view date to the next view. For example: * * ``` * &lt;button * mwlCalendarNextView * [(viewDate)]="viewDate" * [view]="view"&gt; * Next * &lt;/button&gt; * ``` */ export declare class CalendarNextViewDirective { /** * The current view */ view: string; /** * The current view date */ viewDate: Date; /** * Called when the view date is changed */ viewDateChange: EventEmitter<Date>; /** * @hidden */ onClick(): void; }