@villedemontreal/workit
Version:
Worker for Node.js system with pluggable clients that works with both AWS Step function and Camunda platform powered by TypeScript
7 lines (6 loc) • 346 B
TypeScript
import { Worker } from '@villedemontreal/workit-core';
import { ICamundaService, IClient, IProcessHandler } from '@villedemontreal/workit-types';
import { Client } from '../camunda-n-mq/client';
export declare class StepFunctionWorker extends Worker {
constructor(client: Client<IClient<ICamundaService>>, processHandler: IProcessHandler);
}