Rezi
    Preparing search index...

    Type Alias TreeLocalStatePatch

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

    Partial update to tree state.