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

AggregationResultHistogramBucket

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

A histogram bucket with a lower and upper bound, and a count of items with a field value between those bounds. The lower bound is inclusive and the upper bound is exclusive. Lower bound may be -infinity and upper bound may be infinity.

interface AggregationResultHistogramBucket {
count?: bigint;
lowerBound?: number;
upperBound?: number;
}

§Properties

§
count?: bigint
[src]

Count of items in the bucket.

§
lowerBound?: number
[src]

Lower bound - inclusive.

§
upperBound?: number
[src]

Upper bound - exclusive.