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

MatchRange

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

An object that represents the range of values to match on. The first character of the range is included in the range, though the last character is not. For example, if the range specified were 1-100, only values 1-99 would be matched.

interface MatchRange {
end: number;
start: number;
}

§Properties

§
end: number
[src]

The end of the range.

§
start: number
[src]

The start of the range.