@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) • 769 B
TypeScript
import { ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from "@angular/core";
import { FormBuilder, FormGroup } from "@angular/forms";
import { IHasChangeDetector, IHasForm } from "../../../../../types";
export declare class TimeseriesTileDescriptionConfigurationComponent implements OnInit, OnDestroy, OnChanges, IHasChangeDetector, IHasForm {
private formBuilder;
changeDetector: ChangeDetectorRef;
static lateLoadKey: string;
label: string;
formReady: EventEmitter<FormGroup>;
formDestroy: EventEmitter<FormGroup>;
form: FormGroup;
constructor(formBuilder: FormBuilder, changeDetector: ChangeDetectorRef);
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
ngOnDestroy(): void;
}