ng2-date-picker-pda-forked
Version:
25 lines (24 loc) • 781 B
TypeScript
import { EventEmitter } from '@angular/core';
export declare class CalendarNavComponent {
onLeftNav: EventEmitter<null>;
onLeftSecondaryNav: EventEmitter<null>;
onRightNav: EventEmitter<null>;
onRightSecondaryNav: EventEmitter<null>;
onLabelClick: EventEmitter<null>;
label: string;
isLabelClickable: boolean;
showLeftNav: boolean;
showLeftSecondaryNav: boolean;
showRightNav: boolean;
showRightSecondaryNav: boolean;
leftNavDisabled: boolean;
leftSecondaryNavDisabled: boolean;
rightNavDisabled: boolean;
rightSecondaryNavDisabled: boolean;
theme: string;
leftNavClicked(): void;
leftSecondaryNavClicked(): void;
rightNavClicked(): void;
rightSecondaryNavClicked(): void;
labelClicked(): void;
}