UNPKG

ngx-dynamic-dashboard

Version:
17 lines (16 loc) 473 B
/** * 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; }