UNPKG

@rudderstack/workflow-engine

Version:
8 lines 579 B
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