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) • 698 B
TypeScript
import { FormioForm } from './index';
export declare class FormioPromiseService {
url: string;
options?: object;
private formioService;
constructor(url: string, options?: object);
saveForm(form: FormioForm, options?: any): Promise<any>;
loadForm(query?: any, options?: any): Promise<any>;
loadSubmission(query?: any, options?: any): Promise<any>;
userPermissions(user: any, form: any, submission: any): Promise<any>;
deleteSubmission(data?: any, options?: any): Promise<any>;
loadForms(query: any, options?: any): Promise<any>;
saveSubmission(submission: {}, options?: any): Promise<any>;
loadSubmissions(query?: any, options?: any): Promise<any>;
}