@vk-io/scenes
    Preparing search index...

    Interface IScene<S>

    interface IScene<S extends Record<string, unknown> = Record<string, any>> {
        slug: string;
        enterHandler(context: IContext<S>): unknown;
        leaveHandler(context: IContext<S>): unknown;
    }

    Type Parameters

    • S extends Record<string, unknown> = Record<string, any>

    Implemented by

    Index

    Properties

    Methods

    Properties

    slug: string

    The unique name of the scene

    Methods