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;
}