@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
20 lines (19 loc) • 1.2 kB
TypeScript
import { ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from "@angular/core";
import { FormBuilder, FormGroup } from "@angular/forms";
import { IHasChangeDetector, IHasForm } from "../../../../../types";
import * as i0 from "@angular/core";
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;
static ɵfac: i0.ɵɵFactoryDeclaration<TimeseriesTileDescriptionConfigurationComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<TimeseriesTileDescriptionConfigurationComponent, "nui-table-column-description-configuration", never, { "label": { "alias": "label"; "required": false; }; }, { "formReady": "formReady"; "formDestroy": "formDestroy"; }, never, never, false, never>;
}