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/macie2.ts?docs=full";

Specifies the location of an occurrence of sensitive data in a non-binary text file, such as an HTML, TXT, or XML file.

interface Range {
end?: number | null;
start?: number | null;
startColumn?: number | null;
}

§Properties

§
end?: number | null
[src]

The number of lines from the beginning of the file to the end of the sensitive data.

§
start?: number | null
[src]

The number of lines from the beginning of the file to the beginning of the sensitive data.

§
startColumn?: number | null
[src]

The number of characters, with spaces and starting from 1, from the beginning of the first line that contains the sensitive data (start) to the beginning of the sensitive data.