Skip to content
1 min read · 40 words

Type Alias: RetrievableStoreFn

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

Stores a new retrievable record in the persistence layer.

Parameters

ParameterType
ctxTurnContext
vRetrievable

Returns

void | Promise<void>