@rudderstack/workflow-engine
Version:
A generic workflow execution engine
9 lines • 474 B
TypeScript
import { BatchStep, BatchStepOutput, ExecutionBindings } from '../../../common/types';
import { BatchExecutor } from '../../types';
import { BaseStepExecutor } from '../executors/base';
export declare class BatchStepExecutor extends BaseStepExecutor {
readonly executor: BatchExecutor;
execute(input: any, bindings: ExecutionBindings): Promise<BatchStepOutput>;
constructor(step: BatchStep, executor: BatchExecutor);
}
//# sourceMappingURL=step_executor.d.ts.map