Type Alias: ThoughtStoreFn
ts
type ThoughtStoreFn = (ctx: TurnContext, v: Thought) => void | Promise<void>;Stores a new thought in the persistence layer.
Parameters
| Parameter | Type |
|---|---|
ctx | TurnContext |
v | Thought |
Returns
void | Promise<void>