ngx-dynamic-dashboard
Version:
an dashboard lib for angular 10
17 lines (16 loc) • 473 B
TypeScript
/**
* Created by jayhamilton on 2/5/17.
*/
import { AfterViewInit } from '@angular/core';
import { FormGroup } from '@angular/forms';
import { PropertyBase } from './property-base';
export declare class DynamicFormPropertyComponent implements AfterViewInit {
property: PropertyBase<any>;
form: FormGroup;
gadgetTags: any[];
endPoints: string[];
constructor();
get isValid(): boolean;
updateEndPointList(): void;
ngAfterViewInit(): void;
}