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

DoubleRange

import type { DoubleRange } from "https://googleapis.deno.dev/v1/trafficdirector:v3.ts";

Specifies the double start and end of the range using half-open interval semantics [start, end).

interface DoubleRange {
end?: number;
start?: number;
}

§Properties

§
end?: number
[src]

end of the range (exclusive)

§
start?: number
[src]

start of the range (inclusive)