Skip to content

ToolResumption

type ToolResumption = {
data: unknown;
state?: unknown;
};

Defined in: tool/tool.ts:12

The caller’s answer to a prior ToolInterrupt, handed back when the tool re-executes. Present means “approved” (with optional data); absent means a fresh call. state is the checkpoint the answered interrupt carried.

data: unknown;

Defined in: tool/tool.ts:12


optional state?: unknown;

Defined in: tool/tool.ts:12