UNPKG

angular2-json-schema-form

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