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

Position

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

A position in a policy.

interface Position {
column: number;
line: number;
offset: number;
}

§Properties

§
column: number
[src]

The column of the position, starting from 0.

§
line: number
[src]

The line of the position, starting from 1.

§
offset: number
[src]

The offset within the policy that corresponds to the position, starting from 0.