@rudderstack/workflow-engine
Version:
A generic workflow execution engine
10 lines • 450 B
TypeScript
import { ExecutionBindings, StepOutput } from '../../../common/types';
import { ComposableStepExecutor } from './composable';
/**
* DebuggableStepExecutor logs the input and output of step and also
* helps to set break points for debugging.
*/
export declare class DebuggableStepExecutor extends ComposableStepExecutor {
execute(input: any, executionBindings: ExecutionBindings): Promise<StepOutput>;
}
//# sourceMappingURL=debuggable.d.ts.map