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://googleapis.deno.dev/v1/docs:v1.ts";

Specifies a contiguous range of text.

interface Range {
endIndex?: number;
segmentId?: string;
startIndex?: number;
}

§Properties

§
endIndex?: number
[src]

The zero-based end index of this range, exclusive, in UTF-16 code units. In all current uses, an end index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.

§
segmentId?: string
[src]

The ID of the header, footer, or footnote that this range is contained in. An empty segment ID signifies the document's body.

§
startIndex?: number
[src]

The zero-based start index of this range, in UTF-16 code units. In all current uses, a start index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.