@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
15 lines (14 loc) • 585 B
TypeScript
import { OnDestroy } from "@angular/core";
import { EventBus, IEvent } from "@nova-ui/bits";
import * as i0 from "@angular/core";
/**
* 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;
static ɵfac: i0.ɵɵFactoryDeclaration<EventBusDebugger, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<EventBusDebugger>;
}