@rudderstack/workflow-engine
Version:
A generic workflow execution engine
8 lines • 423 B
TypeScript
import { BatchResult, ExecutionBindings } from '../../../common/types';
import { BatchExecutor } from '../../types';
export declare class DefaultBatchWorkflowExecutor implements BatchExecutor {
readonly executors: BatchExecutor[];
constructor(executors: BatchExecutor[]);
execute(input: any[], bindings: ExecutionBindings): Promise<BatchResult[]>;
}
//# sourceMappingURL=default_batch_workflow_executor.d.ts.map