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

21 lines (20 loc) 838 B
import { OnInit, EventEmitter } from '@angular/core'; import { FormManagerConfig } from '../form-manager.config'; import { FormManagerService } from '../form-manager.service'; import { ActivatedRoute, Router } from '@angular/router'; import { FormioAuthService } from '../../auth/auth.service'; export declare class FormManagerViewComponent implements OnInit { service: FormManagerService; router: Router; route: ActivatedRoute; config: FormManagerConfig; auth: FormioAuthService; submission: any; currentForm: any; renderOptions: any; onSuccess: EventEmitter<object>; onError: EventEmitter<object>; constructor(service: FormManagerService, router: Router, route: ActivatedRoute, config: FormManagerConfig, auth: FormioAuthService); ngOnInit(): void; onSubmit(submission: any): void; }