@5minds/processcube_engine
Version:
The ProcessCube Engine. Stores and executes BPMNs.
11 lines (10 loc) • 457 B
TypeScript
import { Identity } from '@5minds/processcube_engine_sdk';
import type { ProcessInstance } from '../ProcessInstance';
declare const _default: {
hook: (processInstance: ProcessInstance) => void;
unhook: (processInstanceId: string) => void;
isRegistered: (processInstanceId: string) => boolean;
get: (processInstanceId: string) => ProcessInstance;
kill: (identity: Identity, processInstanceId: string) => void;
};
export default _default;