Skip to content
1 min read · 45 words

Type Alias: StandingInstructionStoreFn

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

Defined in: lib/contracts/turn_runner_context.ts:157

Stores a new standing instruction in the persistence layer.

Parameters

ParameterType
ctxTurnContext
vstring | Tokenizable

Returns

void | Promise<void>