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

IntegerFacetingOptions

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

Used to specify integer faceting options.

interface IntegerFacetingOptions {
integerBuckets?: bigint[];
}

§Properties

§
integerBuckets?: bigint[]
[src]

Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {<1, [1,5), [5-10), [10-100), >=100}.