Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
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.30.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.