UNPKG

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

16 lines (15 loc) 665 B
import { EventEmitter, OnInit } from '@angular/core'; import { Router, ActivatedRoute } from '@angular/router'; import { FormioResourceService } from '../resource.service'; import { FormioResourceConfig } from '../resource.config'; export declare class FormioResourceCreateComponent implements OnInit { service: FormioResourceService; route: ActivatedRoute; router: Router; config: FormioResourceConfig; onError: EventEmitter<any>; onSuccess: EventEmitter<any>; constructor(service: FormioResourceService, route: ActivatedRoute, router: Router, config: FormioResourceConfig); ngOnInit(): void; onSubmit(submission: any): void; }