@villedemontreal/workit-bpm-client
Version:
Camunda BPM client for WorkIt that works with Camunda platform powered by TypeScript
10 lines (9 loc) • 405 B
TypeScript
import { ICamundaService, IMessage, IVariablePayload, IVariables, IWorkflowProps } from '@villedemontreal/workit-types';
export declare class CamundaMessage {
static wrap(payload: {
task: IVariablePayload;
taskService: any;
}): [IMessage, ICamundaService];
static unwrap(message: IMessage<unknown, IWorkflowProps<unknown>>): IVariables;
private static _setCustomHeaders;
}