@rudderstack/workflow-engine
Version:
A generic workflow execution engine
8 lines • 410 B
TypeScript
import { SimpleStep, StepOutput, WorkflowEngine } from '../../../../common';
import { BaseStepExecutor } from '../../executors/base';
export declare class ExternalWorkflowStepExecutor extends BaseStepExecutor {
private readonly workflowEngine;
constructor(workflowEngine: WorkflowEngine, step: SimpleStep);
execute(input: any): Promise<StepOutput>;
}
//# sourceMappingURL=external_workflow.d.ts.map