Type Alias: ToolCallDeleteFn
ts
type ToolCallDeleteFn = (ctx: TurnContext, id: string) => void | Promise<void>;Removes a tool call from the persistence layer by ID.
Parameters
| Parameter | Type |
|---|---|
ctx | TurnContext |
id | string |
Returns
void | Promise<void>