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

Span

import type { Span } from "https://aws-api.deno.dev/v0.4/services/accessanalyzer.ts?docs=full";

A span in a policy. The span consists of a start position (inclusive) and end position (exclusive).

interface Span {
end: Position;
start: Position;
}

§Properties

§

The end position of the span (exclusive).

§

The start position of the span (inclusive).