@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
9 lines (8 loc) • 433 B
TypeScript
import { PipeTransform } from "@angular/core";
import { IWidget } from "../../components/widget/types";
import { WidgetTypesService } from "../../services/widget-types.service";
export declare class PizzagnaRootPipe implements PipeTransform {
private widgetTypesService;
constructor(widgetTypesService: WidgetTypesService);
transform(widget: IWidget | null, key?: "configurator" | "widget"): string | null | undefined;
}