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

Contains the row and column of a location of a Statement element in a policy document.

This data type is used as a member of the "Statement" type.

interface Position {
Column?: number | null;
Line?: number | null;
}

§Properties

§
Column?: number | null
[src]

The column in the line containing the specified position in the document.

§
Line?: number | null
[src]

The line containing the specified position in the document.