UNPKG

@tsed/formio

Version:
31 lines (20 loc) 1.18 kB
import {FormioAction, FormioActionInfo} from "@tsed/formio-types"; import {Request, Response} from "express"; import {FormioMongooseSchema} from "./FormioBaseModel.js"; import {FormioComponent} from "./FormioModels.js"; export interface FormioActionModel extends FormioAction { resolve(handler: string, method: string, req: Request, res: Response, next: Function, setActionItemMessage: SetActionItemMessage): void; } export type FormioActionMongooseSchema = FormioMongooseSchema<FormioAction>; export type SetActionItemMessage = (message: string, data?: any, state?: any) => void; export interface FormioActionModelCtor { schema?: FormioActionMongooseSchema; info(req: Request, response: Response, next: (err: any, info: FormioActionInfo) => void): void; settingsForm(req: Request, response: Response, next: (err: any, info: FormioComponent[]) => void): void; new (data: FormioAction, req: Request, res: Response): FormioActionModel; } export interface ActionMethods { info?(req: Request, response: Response): Promise<FormioAction>; settingsForm(req: Request, response: Response): Promise<FormioComponent[]>; resolve(...args: any[]): Promise<any>; }