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

NumberFilter

import type { NumberFilter } from "https://aws-api.deno.dev/v0.3/services/inspector2.ts?docs=full";

An object that describes the details of a number filter.

interface NumberFilter {
lowerInclusive?: number | null;
upperInclusive?: number | null;
}

§Properties

§
lowerInclusive?: number | null
[src]

The lowest number to be included in the filter.

§
upperInclusive?: number | null
[src]

The highest number to be included in the filter.