UNPKG

angular2-json-schema-form

Version:
20 lines (19 loc) 601 B
import { OnInit } from '@angular/core'; import { AbstractControl } from '@angular/forms'; import { JsonSchemaFormService } from '../json-schema-form.service'; export declare class InputComponent implements OnInit { private jsf; formControl: AbstractControl; controlName: string; controlValue: string; controlDisabled: boolean; boundControl: boolean; options: any; autoCompleteList: string[]; layoutNode: any; layoutIndex: number[]; dataIndex: number[]; constructor(jsf: JsonSchemaFormService); ngOnInit(): void; updateValue(event: any): void; }