angular-formio
Version:
Form.io Angular JSON Form Renderer ========================== This library serves as a Dynamic JSON Powered Form rendering library for [Angular](https://angular.io). This works by providing a JSON schema to a ```<formio>``` Angular component, where that f
12 lines (11 loc) • 556 B
TypeScript
import { OnInit, NgZone, OnChanges } from '@angular/core';
import { FormioAppConfig } from '../../formio.config';
import { FormioBaseComponent } from '../../FormioBaseComponent';
import { CustomTagsService } from '../../custom-component/custom-tags.service';
export declare class FormioComponent extends FormioBaseComponent implements OnInit, OnChanges {
ngZone: NgZone;
config: FormioAppConfig;
customTags?: CustomTagsService;
constructor(ngZone: NgZone, config: FormioAppConfig, customTags?: CustomTagsService);
getRenderer(): any;
}