@tsed/formio
Version:
Formio package for Ts.ED framework
20 lines (15 loc) • 507 B
text/typescript
import {Type} from "@tsed/core";
import {FormioActionModelCtor} from "./FormioAction.js";
export interface FormioActions {
email: FormioActionModelCtor;
login: FormioActionModelCtor;
resetpass: FormioActionModelCtor;
role: FormioActionModelCtor;
save: FormioActionModelCtor;
sql: FormioActionModelCtor;
webhook: FormioActionModelCtor;
[key: string]: FormioActionModelCtor;
}
export interface FormioActionsIndex {
actions: FormioActions & Record<string, Type<FormioActionModelCtor>>;
}