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

Point

import type { Point } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

A point in the timeseries.

interface Point {
time?: Date;
value?: number;
}

§Properties

§
time?: Date
[src]

The timestamp of the point.

§
value?: number
[src]

The value of the point.