masto
    Preparing search index...

    Interface DimensionData

    interface DimensionData {
        humanKey: string;
        humanValue?: string | null;
        key: string;
        unit?: string | null;
        value: string;
    }
    Index

    Properties

    humanKey: string

    A human-readable key for this data item.

    humanValue?: string | null

    A human-readable formatted value for this data item.

    key: string

    The unique keystring for this data item.

    unit?: string | null

    The units associated with this data item’s value, if applicable.

    value: string

    The value for this data item.