UNPKG

@tachybase/module-workflow

Version:

A powerful BPM tool that provides foundational support for business automation, with the capability to extend unlimited triggers and nodes.

10 lines (9 loc) 296 B
import Plugin from '..'; import type { ExecutionModel, FlowNodeModel } from '../types'; export type CustomFunction = (this: { execution: ExecutionModel; node?: FlowNodeModel; }) => any; export default function ({ functions }: Plugin, more?: { [key: string]: CustomFunction; }): void;