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

12 lines (11 loc) 411 B
import { OnDestroy } from "@angular/core"; import { EventBus, IEvent } from "@nova-ui/bits"; /** * A provider that helps with debugging events on the pizzagna event bus. Include it anywhere in the widget to activate it. */ export declare class EventBusDebugger implements OnDestroy { private eventBus; private readonly destroy$; constructor(eventBus: EventBus<IEvent>); ngOnDestroy(): void; }