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

    Interface CurrentFocusId

    A single currently active focus target: its id plus the group it was activated from (or the default-group symbol).

    interface CurrentFocusId {
        fromGroup: string | typeof defaultTargetsSymbol;
        id: string;
    }
    Index
    fromGroup: string | typeof defaultTargetsSymbol

    The named group the target was activated from, or defaultTargetsSymbol for the default group.

    id: string

    The id of the active focus target.