Function Graph Overview
    Preparing search index...

    Type Alias Cluster

    type Cluster = {
        id: ClusterId;
        type: ClusterType;
        parent?: Cluster;
        depth: number;
    }
    Index

    Properties

    Properties

    A unique identifier for the cluster.

    parent?: Cluster

    Clusters can be nested.

    depth: number

    How deep are we in the hierarchy? Used for sorting clusters when rendering.