@rudderstack/workflow-engine
Version:
A generic workflow execution engine
9 lines • 457 B
TypeScript
import { ExecutionBindings, SimpleStep, StepOutput } from '../../../../common';
import { BaseStepExecutor } from '../../executors/base';
export declare class FunctionStepExecutor extends BaseStepExecutor {
private readonly fn;
constructor(step: SimpleStep, bindings: Record<string, any>);
private static extractFunction;
execute(input: any, executionBindings: ExecutionBindings): Promise<StepOutput>;
}
//# sourceMappingURL=function.d.ts.map