Interface IScene<S>

interface IScene<S> {
    slug: string;
    enterHandler(context): unknown;
    leaveHandler(context): unknown;
}

Type Parameters

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

Implemented by

Properties

Methods

Properties

slug: string

The unique name of the scene

Methods

Generated using TypeDoc