Type Alias: ToolCallStoreFn
ts
type ToolCallStoreFn = (ctx: TurnContext, v: ToolCall) => void | Promise<void>;Stores a new tool call in the persistence layer.
Parameters
| Parameter | Type |
|---|---|
ctx | TurnContext |
v | ToolCall |
Returns
void | Promise<void>