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

19 lines (18 loc) 464 B
import FormioMetadata from './formio-metadata'; export default interface FormioSubmission<T = any, stateType = FormioSubmissionState> { _id?: string; created?: string; data?: T; form?: string; metadata?: FormioMetadata; modified?: string; owner?: string; project?: string; state?: stateType; _fvid?: number; _vid?: number; } export declare enum FormioSubmissionState { draft = "draft", submitted = "submitted" }