Rezi
    Preparing search index...

    Type Alias TreeLocalState

    TreeLocalState: Readonly<
        {
            expandedSet: ReadonlySet<string>
            | undefined;
            expandedSetRef: readonly string[] | undefined;
            flatCache: TreeFlatCache | null;
            focusedKey: string | null;
            loadingKeys: ReadonlySet<string>;
            prefixCache: TreePrefixCache | null;
            scrollTop: number;
            viewportHeight: number;
        },
    >

    Local state for tree instances.