Skip to content
1 min read · 41 words

Type Alias: StandingInstructionDeleteFn

ts
type StandingInstructionDeleteFn = (
  ctx: TurnContext,
  v: string | Tokenizable,
) => void | Promise<void>;

Removes a standing instruction from the persistence layer.

Parameters

ParameterType
ctxTurnContext
vstring | Tokenizable

Returns

void | Promise<void>