Skip to content
1 min read · 39 words

Type Alias: ThoughtStoreFn

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

Stores a new thought in the persistence layer.

Parameters

ParameterType
ctxTurnContext
vThought

Returns

void | Promise<void>