angular-formio-gp
Version:
A fork of 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,
15 lines (14 loc) • 496 B
TypeScript
import { Observable } from 'rxjs';
import { FormioForm } from './formio.common';
export declare class FormioService {
url: string;
options?: object;
formio: any;
constructor(url: string, options?: object);
requestWrapper(fn: any): any;
saveForm(form: FormioForm): Observable<FormioForm>;
loadForm(options?: any): Observable<FormioForm>;
loadSubmission(): Observable<{}>;
saveSubmission(submission: {}): Observable<{}>;
loadSubmissions(): Observable<{}>;
}