Type Alias: ThoughtDeleteFn
ts
type ThoughtDeleteFn = (ctx: TurnContext, id: string) => void | Promise<void>;Defined in: lib/contracts/turn_runner_context.ts:208
Removes a thought from the persistence layer by ID.
Parameters
| Parameter | Type |
|---|---|
ctx | TurnContext |
id | string |
Returns
void | Promise<void>