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/redis:v1.ts";

TypedValue represents the value of a metric type. It can either be a double, an int64, a string or a bool.

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

§Properties

§
boolValue?: boolean
[src]

For boolean value

§
doubleValue?: number
[src]

For double value

§
int64Value?: bigint
[src]

For integer value

§
stringValue?: string
[src]

For string value