Skip to main content
Deno 2 is finally here 🎉️
Learn more
Go to Latest
interface default.Debugger.GetPossibleBreakpointsRequest
import { type default } from "https://deno.land/x/puppeteer@14.1.1/vendor/puppeteer-core/puppeteer/api-docs-entry.d.ts";
const { GetPossibleBreakpointsRequest } = default.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.