Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DataPoint

import type { DataPoint } from "https://aws-api.deno.dev/v0.4/services/pi.ts?docs=full";

A timestamp, and a single numerical value, which together represent a measurement at a particular point in time.

interface DataPoint {
Timestamp: Date | number;
Value: number;
}

§Properties

§
Timestamp: Date | number
[src]

The time, in epoch format, associated with a particular Value.

§
Value: number
[src]

The actual value associated with a particular Timestamp.