Skip to content
1 min read · 40 words

Type Alias: ToolCallStoreFn

ts
type ToolCallStoreFn = (ctx: TurnContext, v: ToolCall) => void | Promise<void>;

Stores a new tool call in the persistence layer.

Parameters

ParameterType
ctxTurnContext
vToolCall

Returns

void | Promise<void>