- Get Started
- Product
- Resources
- Tools & SDKs
- Framework
- Reference
Menu
- Get Started
- Product
- Resources
- Tools & SDKs
- Framework
- Reference
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
objectOptionalThe type of a step's input or result.
Was this page helpful?