UNPKG

@nova-ui/dashboards

Version:

Nova Dashboards is a framework designed to provide feature developers with a common solution for presenting data coming from various sources within a single view, as well as a set of predefined widget visualizations that are 100% configuration-driven and

21 lines (20 loc) 795 B
import { OnDestroy } from "@angular/core"; import { PizzagnaService } from "../../pizzagna/services/pizzagna.service"; import { IConfigurable, IProperties } from "../../types"; export declare class PizzagnaBroadcasterService implements IConfigurable, OnDestroy { private pizzagnaService; private component; private configs; private readonly defaultTrackOn; private subscriptions; private componentId; private parentComponentId; constructor(pizzagnaService: PizzagnaService); setComponent(component: any, componentId: string): void; updateConfiguration(properties: IProperties): void; private initChangeSubscriptions; private getObservableFor; private getPizzagnaObservableFor; private getComponentObservableFor; ngOnDestroy(): void; }