Skip to content

FormioJs

@tsed/formio

Usage

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

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

Overview

ts
interface FormioJs {
    forms: Record<string, any>;
    cache: Record<string, any>;
    Components: {
        components: {
            component: {
                Validator: {
                    db: any | null;
                    token: any | null;
                    form: any | null;
                    submission: any | null;
                };
            };
        };
    };
    getToken(): string;
}

forms

ts
forms: Record<string, any>;

cache

ts
cache: Record<string, any>;

Components

ts
Components: {
     components: {
         component: {
             Validator: {
                 db: any | null;
                 token: any | null;
                 form: any | null;
                 submission: any | null;
             };
         };
     };
 };

getToken

ts
getToken(): string;

Released under the MIT License.