Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno/cli/js/error_stack.ts>Location

A modern runtime for JavaScript and TypeScript.
Go to Latest
interface Location
import { type Location } from "https://deno.land/x/deno@v0.28.0/cli/js/error_stack.ts";

Properties

filename: string

The full url for the module, e.g. file://some/file.ts or https://some/file.ts.

line: number

The line number in the file. It is assumed to be 1-indexed.

column: number

The column number in the file. It is assumed to be 1-indexed.