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

PointData

import type { PointData } from "https://googleapis.deno.dev/v1/monitoring:v3.ts";

A point's value columns and time interval. Each point has one or more point values corresponding to the entries in point_descriptors field in the TimeSeriesDescriptor associated with this object.

interface PointData {
timeInterval?: TimeInterval;
values?: TypedValue[];
}

§Properties

§
timeInterval?: TimeInterval
[src]

The time interval associated with the point.

§
values?: TypedValue[]
[src]

The values that make up the point.