@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) • 361 B
TypeScript
import Instruction from '../../instructions';
declare class NoticeInstruction extends Instruction {
run(node: any, prevJob: any, processor: any): Promise<any>;
resume(node: any, job: any, processor: any): Promise<any>;
duplicateConfig(node: any, { transaction }: {
transaction: any;
}): Promise<any>;
}
export default NoticeInstruction;