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.

11 lines (10 loc) 302 B
import { FlowNodeModel, Instruction, Processor } from '../..'; export declare class DynamicCalculation extends Instruction { run(node: FlowNodeModel, prevJob: any, processor: Processor): Promise<{ result: any; status: 1; } | { result: any; status: -2; }>; }