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

BetweenFilter

import type { BetweenFilter } from "https://googleapis.deno.dev/v1/analyticsdata:v1beta.ts";

To express that the result needs to be between two numbers (inclusive).

interface BetweenFilter {
fromValue?: NumericValue;
toValue?: NumericValue;
}

§Properties

§
fromValue?: NumericValue
[src]

Begins with this number.

§

Ends with this number.