angular2-json-schema-form-ionic
Version:
Ionic framework library for the [Angular 2 JSON Schema Form](https://github.com/dschnelldavis/angular2-json-schema-form)
21 lines (20 loc) • 611 B
TypeScript
import { OnInit } from '@angular/core';
import { AbstractControl } from '@angular/forms';
import { JsonSchemaFormService } from 'angular2-json-schema-form';
export declare class IonicToggleComponent implements OnInit {
private jsf;
formControl: AbstractControl;
controlName: string;
controlValue: any;
controlDisabled: boolean;
boundControl: boolean;
options: any;
trueValue: any;
falseValue: any;
layoutNode: any;
layoutIndex: number[];
dataIndex: number[];
constructor(jsf: JsonSchemaFormService);
ngOnInit(): void;
updateValue(value: any): void;
}