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

MetricsValue

import type { MetricsValue } from "https://googleapis.deno.dev/v1/script:v1.ts";

Metrics value that holds number of executions counted.

interface MetricsValue {
endTime?: Date;
startTime?: Date;
value?: bigint;
}

§Properties

§
endTime?: Date
[src]

Required field indicating the end time of the interval.

§
startTime?: Date
[src]

Required field indicating the start time of the interval.

§
value?: bigint
[src]

Indicates the number of executions counted.