Rezi
    Preparing search index...

    Type Alias TreeRoutingCtx<T>

    TreeRoutingCtx: Readonly<
        {
            expanded: readonly string[];
            flatNodes: readonly FlattenedNode<T>[];
            keyboardNavigation: boolean;
            state: TreeLocalState;
            treeId: string;
        },
    >

    Routing context for tree keyboard navigation.

    Type Parameters

    • T = unknown