timesfm-ts - v1.0.0
    Preparing search index...

    A node in a time-series hierarchy (e.g. "Total > Region > Store").

    interface HierarchyNode {
        id: string;
        parentId: string | null;
        label?: string;
    }
    Index

    Properties

    Properties

    id: string

    Unique node id (e.g. 'total', 'region:west', 'store:1').

    parentId: string | null

    Parent node id, or null for the root.

    label?: string

    Human-readable label.