Skip to content
1 min read · 41 words

Type Alias: RetrievableDeleteFn

ts
type RetrievableDeleteFn = (
  ctx: TurnContext,
  id: string,
) => void | Promise<void>;

Removes a retrievable record from the persistence layer by ID.

Parameters

ParameterType
ctxTurnContext
idstring

Returns

void | Promise<void>