Skip to content

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.

optional items?: EmittedItem[];

Defined in: client/src/types/types.ts:34


optional resumption?: ToolResumption;

Defined in: client/src/types/types.ts:33