Interface IAggregateRow

interface IAggregateRow {
    label?: string;
    name: string;
    type: "max" | "count" | "avg" | "sum" | "min";
    unit?: string;
    value: number;
}

Properties

label?: string
name: string
type: "max" | "count" | "avg" | "sum" | "min"
unit?: string
value: number

Generated using TypeDoc