UNPKG

@5minds/processcube_engine

Version:

The ProcessCube Engine. Stores and executes BPMNs.

6 lines (5 loc) 446 B
import { Container } from 'inversify'; import { CustomServiceTaskHandler } from '@5minds/processcube_engine_sdk'; export declare function initialize(iocContainer: Container): void; export declare function registerCustomServiceTask<TPayload extends Record<string, any>>(serviceTaskType: string, serviceTaskHandler: CustomServiceTaskHandler<TPayload>): void; export declare function removeCustomServiceTask(serviceTaskType: string): Promise<void>;