angular2-json-schema-form
Version:
Angular JSON Schema Form builder
17 lines (16 loc) • 503 B
TypeScript
import { OnInit } from '@angular/core';
import { JsonSchemaFormService } from '../json-schema-form.service';
export declare class SectionComponent implements OnInit {
private jsf;
options: any;
expanded: boolean;
containerType: string;
layoutNode: any;
layoutIndex: number[];
dataIndex: number[];
constructor(jsf: JsonSchemaFormService);
readonly sectionTitle: string;
ngOnInit(): void;
toggleExpanded(): void;
getFlexAttribute(attribute: string): any;
}