@cartridge-engine/keyboard-engine
    Preparing search index...

    Interface KeyboardLayer

    Layer data required by the keyboard engine.

    Host frameworks extend this type for their own layer implementations.

    interface KeyboardLayer {
        activeElements: string[];
        elements: string[];
        layerId: string;
    }
    Index
    activeElements: string[]

    The subset of elements that currently receive keyboard and mouse events; inactive elements are skipped.

    elements: string[]

    All elements currently on this layer. The keyboard system creates separate keyboard data for each of them.

    layerId: string

    The ID of this layer; must be unique among all layers.