@rudderstack/workflow-engine
Version:
A generic workflow execution engine
8 lines • 579 B
TypeScript
import { Step, StepExecutor, WorkflowOptionsInternal, WorkflowStep } from '../../common';
import { WorkflowStepExecutor } from './executors/workflow_step';
export declare class BaseStepExecutorFactory {
static create(step: Step, options: WorkflowOptionsInternal): Promise<StepExecutor>;
static createWorkflowStepExecutor(step: WorkflowStep, options: WorkflowOptionsInternal): Promise<WorkflowStepExecutor>;
static createSimpleStepExecutors(workflowStep: WorkflowStep, options: WorkflowOptionsInternal): Promise<StepExecutor[]>;
}
//# sourceMappingURL=factory.d.ts.map