Skip to content

FormioActions

@tsed/formio

Usage

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

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

Overview

ts
interface FormioActions {
    email: FormioActionModelCtor;
    login: FormioActionModelCtor;
    resetpass: FormioActionModelCtor;
    role: FormioActionModelCtor;
    save: FormioActionModelCtor;
    sql: FormioActionModelCtor;
    webhook: FormioActionModelCtor;
    [key: string]: FormioActionModelCtor;
}

email

ts
email: FormioActionModelCtor;

login

ts
login: FormioActionModelCtor;

resetpass

ts
resetpass: FormioActionModelCtor;

role

ts
role: FormioActionModelCtor;

save

ts
save: FormioActionModelCtor;

sql

ts
sql: FormioActionModelCtor;

webhook

ts
webhook: FormioActionModelCtor;

[key: string]

ts
[key: string]: FormioActionModelCtor;

Released under the MIT License.