UNPKG

@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

11 lines (10 loc) 702 B
import { InjectionToken } from '@angular/core'; import type { WindowContainerContext, WindowContext } from './window-context'; import type { WindowRef } from './window-ref'; import { WindowSettings } from './window-config'; export declare const RXAP_WINDOW_CONTEXT: InjectionToken<WindowContext<any>>; export declare const RXAP_WINDOW_DATA: InjectionToken<any>; export declare const RXAP_WINDOW_CONTAINER_CONTEXT: InjectionToken<WindowContainerContext<any>>; export declare const RXAP_WINDOW_REF: InjectionToken<WindowRef<any, any>>; export declare const RXAP_WINDOW_SETTINGS: InjectionToken<WindowSettings<any>>; export declare const RXAP_WINDOW_DEFAULT_SETTINGS: InjectionToken<WindowSettings<any>>;