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

TypedValue

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

A single strongly-typed value.

interface TypedValue {
boolValue?: boolean;
distributionValue?: Distribution;
doubleValue?: number;
int64Value?: bigint;
stringValue?: string;
}

§Properties

§
boolValue?: boolean
[src]

A Boolean value: true or false.

§
distributionValue?: Distribution
[src]

A distribution value.

§
doubleValue?: number
[src]

A 64-bit double-precision floating-point number. Its magnitude is approximately ±10±300 and it has 16 significant digits of precision.

§
int64Value?: bigint
[src]

A 64-bit integer. Its range is approximately ±9.2x1018.

§
stringValue?: string
[src]

A variable-length string value.