Skip to content
1 min read · 42 words

Type Alias: ThoughtStoreFn

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

Defined in: lib/contracts/turn_runner_context.ts:202

Stores a new thought in the persistence layer.

Parameters

ParameterType
ctxTurnContext
vThought

Returns

void | Promise<void>