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

    Interface FocusResult

    The active focus entry of a group, as returned by focusCurrent: the focused target's id plus the group it was activated from.

    interface FocusResult {
        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.