Rezi
    Preparing search index...

    Type Alias FlattenedNode<T>

    FlattenedNode: Readonly<
        {
            ancestorIsLast: readonly boolean[];
            depth: number;
            hasChildren: boolean;
            key: string;
            node: T;
            parentKey: string
            | null;
            siblingCount: number;
            siblingIndex: number;
        },
    >

    A flattened node with depth and sibling information.

    Type Parameters

    • T