WorkflowData
WorkflowData: T extends infer Item[] ? (Item
| WorkflowData<Item>)[] : T extends object
? { [Key in keyof T]: T[Key] | WorkflowData<T[Key]> } : T & WorkflowDataProperties<T> & T & WorkflowDataProperties<T> & object
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?