WorkflowData
WorkflowData: T
extends object
? { [Key in keyof T]: WorkflowData<T[Key]> } : WorkflowDataProperties<T> & WorkflowDataProperties<T>
This type is used to encapsulate the input or output type of all utils.
Type Parameters
T
objectRequiredThe type of a step's input or result.
Was this section helpful?