UNPKG

@porscheinformatik/clr-addons

Version:
26 lines (25 loc) 1.18 kB
import { OnDestroy, OnInit } from '@angular/core'; import { ClrHistoryModel } from './history-model.interface'; import { ClrHistoryService } from './history.service'; import { HistoryProvider } from './history.provider'; import * as i0 from "@angular/core"; export declare class ClrHistoryPinned implements OnInit, OnDestroy { private historyService; private historyProvider; username: string; context: { [key: string]: string; }; domain: string; /** * The array of history elements to be displayed. */ historyElements: ClrHistoryModel[]; active: boolean; private settingsSubscription; constructor(historyService: ClrHistoryService, historyProvider: HistoryProvider); ngOnInit(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration<ClrHistoryPinned, [null, { optional: true; }]>; static ɵcmp: i0.ɵɵComponentDeclaration<ClrHistoryPinned, "clr-history-pinned", never, { "username": { "alias": "clrUsername"; "required": false; }; "context": { "alias": "clrContext"; "required": false; }; "domain": { "alias": "clrDomain"; "required": false; }; }, {}, never, never, false, never>; }