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

Identifies where the sensitive data begins and ends.

interface Range {
End?: number | null;
Start?: number | null;
StartColumn?: number | null;
}

§Properties

§
End?: number | null
[src]

The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.

§
Start?: number | null
[src]

The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.

§
StartColumn?: number | null
[src]

In the line where the sensitive data starts, the column within the line where the sensitive data starts.