@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
18 lines (17 loc) • 756 B
TypeScript
import { OnDestroy } from "@angular/core";
import { EventBus, IEvent } from "@nova-ui/bits";
import { PizzagnaService } from "../../pizzagna/services/pizzagna.service";
import { IHasComponent } from "../../types";
import * as i0 from "@angular/core";
export declare class LoadingAdapter implements OnDestroy, IHasComponent {
private eventBus;
private pizzagnaService;
private loadingMap;
private readonly destroy$;
private componentId;
constructor(eventBus: EventBus<IEvent>, pizzagnaService: PizzagnaService);
ngOnDestroy(): void;
setComponent(component: any, componentId: string): void;
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingAdapter, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<LoadingAdapter>;
}