Interface DatapointExtremum

The timestamp and value of a min/max data point aggregate.

interface DatapointExtremum {
    timestamp: Date;
    value: number;
}

Properties

Properties

timestamp: Date
value: number