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

Value

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

Definition of a single value with generic type.

interface Value {
booleanValue?: boolean;
dateValue?: Date;
doubleValue?: number;
integerValue?: bigint;
stringValue?: string;
timestampValue?: Date;
}

§Properties

§
booleanValue?: boolean
[src]
§
dateValue?: Date
[src]
§
doubleValue?: number
[src]
§
integerValue?: bigint
[src]
§
stringValue?: string
[src]
§
timestampValue?: Date
[src]