angular2-json-schema-form
Version:
Angular 2 JSON Schema Form builder
24 lines (23 loc) • 760 B
TypeScript
import { ChangeDetectorRef, OnChanges, OnInit } from '@angular/core';
import { JsonSchemaFormService } from '../../library/json-schema-form.service';
export declare class MaterialDesignComponent implements OnInit, OnChanges {
private changeDetector;
private jsf;
private controlInitialized;
private controlType;
private inputType;
private options;
private widgetLayoutNode;
private widgetOptions;
private layoutPointer;
private formControl;
formID: number;
layoutNode: any;
layoutIndex: number[];
dataIndex: number[];
constructor(changeDetector: ChangeDetectorRef, jsf: JsonSchemaFormService);
ngOnInit(): void;
ngOnChanges(): void;
private initializeControl();
private setTitle();
}