Skip to content

FormioTemplate

@tsed/formio

Usage

typescript
import { FormioTemplate } from "@tsed/formio";

See /packages/third-parties/formio/src/types/domain/FormioTemplate.ts.

Overview

ts
interface FormioTemplate {
    roles?: Record<string, FormioRole>;
    forms: Record<string, FormioForm>;
    resources: Record<string, FormioForm>;
    actions: Record<string, FormioActionItem>;
    submissions?: Record<string, FormioSubmission[]>;
}

roles

ts
roles?: Record<string, FormioRole>;

forms

ts
forms: Record<string, FormioForm>;

resources

ts
resources: Record<string, FormioForm>;

actions

ts
actions: Record<string, FormioActionItem>;

submissions

ts
submissions?: Record<string, FormioSubmission[]>;

Released under the MIT License.