UNPKG

ng-devui

Version:

DevUI components based on Angular

33 lines (32 loc) 1.41 kB
import { EventEmitter, OnInit } from '@angular/core'; import { I18nInterface, I18nService } from 'ng-devui/i18n'; import { Subscription } from 'rxjs'; import { UnitRole } from '../gantt.model'; import * as i0 from "@angular/core"; export declare class GanttToolsComponent implements OnInit { private i18n; set currentUnit(val: string); get currentUnit(): string; get currentUnitLabel(): string; isFullScreen: boolean; goToday: EventEmitter<any>; reduceUnit: EventEmitter<any>; increaseUnit: EventEmitter<any>; switchView: EventEmitter<any>; _currentLabel: string; _currentUnit: string; unitRole: typeof UnitRole; views: { label: string; value: string; }[]; i18nText: I18nInterface['gantt']; i18nLocale: I18nInterface['locale']; i18nSubscription: Subscription; constructor(i18n: I18nService); ngOnInit(): void; avtionHandle(type: any): void; selectView(menu: any): void; static ɵfac: i0.ɵɵFactoryDeclaration<GanttToolsComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<GanttToolsComponent, "d-gantt-tools", never, { "currentUnit": { "alias": "currentUnit"; "required": false; }; "isFullScreen": { "alias": "isFullScreen"; "required": false; }; }, { "goToday": "goToday"; "reduceUnit": "reduceUnit"; "increaseUnit": "increaseUnit"; "switchView": "switchView"; }, never, ["*"], false, never>; }