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

SourceLocation

Represents a location in a Source.

interface SourceLocation {
readonly column: number;
readonly line: number;
}

§Properties

§
readonly column: number
[src]
§
readonly line: number
[src]