Skip to content
1 min read · 42 words

Type Alias: StandingInstructionMutateFn

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

Updates an existing standing instruction in the persistence layer.

Parameters

ParameterType
ctxTurnContext
vstring | Tokenizable

Returns

void | Promise<void>