UNPKG

ng2-easyform

Version:

angular2 angular4 ng2

19 lines (18 loc) 715 B
import { OnInit, AfterViewInit, SimpleChange, ViewContainerRef, ComponentFactoryResolver } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { FieldBase } from '../core'; export declare class MdFieldsComponent implements OnInit, AfterViewInit { private vcRef; private componentFactoryResolver; fields: FieldBase<any>[]; form: FormGroup; wrapperRef: ViewContainerRef; _tipmsg: string; constructor(vcRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver); ngOnInit(): void; ngAfterViewInit(): void; ngAfterViewChecked(): void; ngOnChanges(changes: { [propertyName: string]: SimpleChange; }): void; }