systelab-components
Version:
systelab-components is a set of components that use wide accepted and adopted standard technologies like Angular and Bootstrap, as well as other popular libraries. Please read the ATTRIBUTION.md file for a complete list of dependencies.
20 lines (19 loc) • 946 B
TypeScript
import { EventEmitter } from '@angular/core';
import { I18nService } from 'systelab-translate';
import * as i0 from "@angular/core";
export declare class CalendarHeaderComponent {
private i18nService;
currentDate: Date;
previousYear: EventEmitter<any>;
previousMonth: EventEmitter<any>;
nextMonth: EventEmitter<any>;
nextYear: EventEmitter<any>;
constructor(i18nService: I18nService);
doPreviousYear(): void;
doPreviousMonth(): void;
doNextMonth(): void;
doNextYear(): void;
getTitle(): string;
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarHeaderComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarHeaderComponent, "systelab-calendar-header", never, { "currentDate": { "alias": "currentDate"; "required": false; }; }, { "previousYear": "previousYear"; "previousMonth": "previousMonth"; "nextMonth": "nextMonth"; "nextYear": "nextYear"; }, never, never, false, never>;
}