ng2-date-picker
Version:
[](https://travis-ci.org/vlio20/angular-datepicker) [](#backers) [![Sponsor
27 lines (26 loc) • 850 B
TypeScript
import { EventEmitter } from '@angular/core';
export declare class CalendarNavComponent {
label: string;
isLabelClickable: boolean;
showLeftNav: boolean;
showLeftSecondaryNav: boolean;
showRightNav: boolean;
showRightSecondaryNav: boolean;
leftNavDisabled: boolean;
leftSecondaryNavDisabled: boolean;
rightNavDisabled: boolean;
rightSecondaryNavDisabled: boolean;
showGoToCurrent: boolean;
theme: string;
onLeftNav: EventEmitter<null>;
onLeftSecondaryNav: EventEmitter<null>;
onRightNav: EventEmitter<null>;
onRightSecondaryNav: EventEmitter<null>;
onLabelClick: EventEmitter<null>;
onGoToCurrent: EventEmitter<null>;
leftNavClicked(): void;
leftSecondaryNavClicked(): void;
rightNavClicked(): void;
rightSecondaryNavClicked(): void;
labelClicked(): void;
}