@tachybase/module-workflow
Version:
A powerful BPM tool that provides foundational support for business automation, with the capability to extend unlimited triggers and nodes.
12 lines (11 loc) • 361 B
TypeScript
import { FlowNodeModel, Instruction, Processor } from '../..';
export declare class JSONParseInstruction extends Instruction {
engine: (expression: any, scope: any) => Promise<any>;
run(node: FlowNodeModel, input: any, processor: Processor): Promise<{
result: any;
status: 1;
} | {
result: any;
status: -2;
}>;
}