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

StackTraceElement

import type { StackTraceElement } from "https://googleapis.deno.dev/v1/workflowexecutions:v1.ts";

A single stack element (frame) where an error occurred.

interface StackTraceElement {
position?: Position;
routine?: string;
step?: string;
}

§Properties

§
position?: Position
[src]

The source position information of the stack trace element.

§
routine?: string
[src]

The routine where the error occurred.

§
step?: string
[src]

The step the error occurred at.