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