Type Alias CurrentlyFocusedResult

CurrentlyFocusedResult: {
    ancestors: NavNodeParent[];
    node: NavNode;
    nonGroupParent: NavNodeParent | NavRootNode;
    parent: NavNodeParent | NavRootNode;
}

Data associated with the currently focused node or element. Used for navigation purposes.

Type declaration