gantt-renderer
    Preparing search index...

    Type Alias TaskNode

    TaskNode: Task<Record<string, unknown>> & {
        children: TaskNode[];
        depth: number;
    }

    A task node in the render tree, combining the flat Task input data with computed hierarchy structure.

    Produced by buildTaskTree; consumed by virtualized row rendering and the timeline layout engine.

    Type Declaration

    • children: TaskNode[]

      Array of child task nodes in the tree hierarchy.

    • depth: number

      0 = root