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

Range

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

A range of integer values.

interface Range {
From?: number | null;
Step?: number | null;
To?: number | null;
}

§Properties

§
From?: number | null
[src]

The minimum value in the range.

§
Step?: number | null
[src]

The step value for the range. For example, if you have a range of 5,000 to 10,000, with a step value of 1,000, the valid values start at 5,000 and step up by 1,000. Even though 7,500 is within the range, it isn't a valid value for the range. The valid values are 5,000, 6,000, 7,000, 8,000...

§
To?: number | null
[src]

The maximum value in the range.