Skip to main content
Module

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

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

Properties

start: Location

Start of range to search possible breakpoint locations in.

optional
end: Location

End of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range.

optional
restrictToFunction: boolean

Only consider locations which are in the same (non-nested) function as start.