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