Skip to main content
Module

x/puppeteer_plus/mod.ts>Protocol.Debugger.BreakLocation

Deno port of puppeteer base on latest TypeScript source.
Go to Latest
interface Protocol.Debugger.BreakLocation
import { type Protocol } from "https://deno.land/x/puppeteer_plus@0.14.0/mod.ts";
const { BreakLocation } = Protocol.Debugger;

Properties

scriptId: Runtime.ScriptId

Script identifier as reported in the Debugger.scriptParsed.

lineNumber: integer

Line number in the script (0-based).

optional
columnNumber: integer

Column number in the script (0-based).

optional
type: ("debuggerStatement" | "call" | "return")

(BreakLocationType enum)