@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
17 lines (16 loc) • 822 B
TypeScript
import { OnDestroy } from "@angular/core";
import { Subject } from "rxjs";
import { EventBus, IEvent } from "@nova-ui/bits";
import { IDataSourceOutputPayload } from "./types";
import { PizzagnaService } from "../../pizzagna/services/pizzagna.service";
import { IHasComponent } from "../../types";
export declare class StatusContentFallbackAdapter implements OnDestroy, IHasComponent {
protected eventBus: EventBus<IEvent>;
protected pizzagnaService: PizzagnaService;
protected readonly destroy$: Subject<void>;
protected componentId: string;
constructor(eventBus: EventBus<IEvent>, pizzagnaService: PizzagnaService);
ngOnDestroy(): void;
setComponent(component: any, componentId: string): void;
protected handleDataSourceOutput(event: IEvent<any | IDataSourceOutputPayload<any>>): void;
}