Hook Data Type Reference
The HookData
type represents the non-null data from a BAML React hook. This type is useful when you know the data exists and want to avoid undefined checks.
Type Parameters
FunctionName
The name of the BAML function being called. Used to infer input and output types.
Options
Configuration object that determines streaming behavior. Defaults to { stream?: true }
.
Type Details
type
A utility type that removes undefined from the data property of HookOutput. This means the type will be either FinalDataType or StreamDataType depending on the streaming configuration.