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