UNPKG

@vk-io/scenes

Version:

Scenes for the library vk-io

12 lines (11 loc) 380 B
import { IStepContext, StepSceneHandler } from '../scenes/step.types'; export interface IStepContextOptions<S extends Record<string, unknown> = Record<string, any>> { context: IStepContext<S>; steps: StepSceneHandler<{}, S>[]; } export interface IStepContextGoOptions { /** * Logging into a handler without executing it */ silent?: boolean; }