Skip to main content
Skip to main content

StepFunction

StepFunction: (input: { [K in string | number | symbol]: WorkflowData<TInput[K]> }) => WorkflowData<{ [K in string | number | symbol]: TOutput[K] }> & WorkflowDataProperties<{ [K in keyof TOutput]: TOutput[K] }>

A step function to be used in a workflow.

Type Parameters

TInputobjectRequired
The type of the input of the step.
TOutputobjectRequired
The type of the output of the step.
Was this section helpful?