Skip to content
1 min read · 39 words

Type Alias: ThoughtMutateFn

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

Updates an existing thought in the persistence layer.

Parameters

ParameterType
ctxTurnContext
vThought

Returns

void | Promise<void>