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

13 lines (12 loc) 378 B
import { EventEmitter } from '@angular/core'; import { FormioAuthService } from '../auth/auth.service'; export interface FormioResourceMap { [name: string]: any; } export declare class FormioResources { auth?: FormioAuthService; resources: FormioResourceMap; error: EventEmitter<any>; onError: EventEmitter<any>; constructor(auth?: FormioAuthService); }