Skip to content
1 min read · 41 words

Type Alias: ToolCallDeleteFn

ts
type ToolCallDeleteFn = (ctx: TurnContext, id: string) => void | Promise<void>;

Removes a tool call from the persistence layer by ID.

Parameters

ParameterType
ctxTurnContext
idstring

Returns

void | Promise<void>