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

XPSFloat64StatsHistogramBucket

import type { XPSFloat64StatsHistogramBucket } from "https://googleapis.deno.dev/v1/language:v2.ts";

A bucket of a histogram.

interface XPSFloat64StatsHistogramBucket {
count?: bigint;
max?: number;
min?: number;
}

§Properties

§
count?: bigint
[src]

The number of data values that are in the bucket, i.e. are between min and max values.

§
max?: number
[src]

The maximum value of the bucket, exclusive unless max = "Infinity", in which case it's inclusive.

§
min?: number
[src]

The minimum value of the bucket, inclusive.