@rxap/window-system
Version:
A module for creating and managing windows within an Angular application. It provides components for window containers, toolbars, resizers, action bars, and task bars, along with services for managing window instances and configurations. This library allo
15 lines (14 loc) • 698 B
TypeScript
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
import { WindowService } from '../window.service';
import { Subscription } from 'rxjs';
import * as i0 from "@angular/core";
export declare class WindowTaskBarComponent implements OnInit, OnDestroy {
windowService: WindowService;
cdr: ChangeDetectorRef;
subscriptions: Subscription;
constructor(windowService: WindowService, cdr: ChangeDetectorRef);
ngOnInit(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<WindowTaskBarComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<WindowTaskBarComponent, "rxap-window-task-bar", never, {}, {}, never, never, true, never>;
}