ActionCallOptions
type ActionCallOptions = { items?: EmittedItem[]; resumption?: ToolResumption;};Defined in: client/src/types/types.ts:32
Per-call options for an action. Supply resumption to answer a prior
ToolInterrupt (its state is carried on the thrown interrupt), and items
to seed the server’s latest lookups with the caller’s current item state.
Properties
Section titled “Properties”items?
Section titled “items?”optional items?: EmittedItem[];Defined in: client/src/types/types.ts:34
resumption?
Section titled “resumption?”optional resumption?: ToolResumption;Defined in: client/src/types/types.ts:33