UNPKG

@tsed/formio-types

Version:
13 lines (12 loc) 275 B
export interface FormioActionItem<Data = any> { _id: string | undefined; title: string; form: string; submission?: string; action: string; handler: string; method: string; state: "new" | "inprogress" | "complete" | "error"; messages: any[]; data: Data; }