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

AggregationHistogram

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

Histogram of bucketed assets counts by field value.

interface AggregationHistogram {
lowerBounds?: number[];
}

§Properties

§
lowerBounds?: number[]
[src]

Lower bounds of buckets. The response will contain n+1 buckets for n bounds. The first bucket will count all assets for which the field value is smaller than the first bound. Subsequent buckets will count assets for which the field value is greater or equal to a lower bound and smaller than the next one. The last bucket will count assets for which the field value is greater or equal to the final lower bound. You can define up to 20 lower bounds.