Debugger.GetPossibleBreakpointsParameterType - Node documentation
interface Debugger.GetPossibleBreakpointsParameterType

Usage in Deno

import { type Debugger } from "node:inspector";
type { GetPossibleBreakpointsParameterType } = Debugger;

Properties

Start of range to search possible breakpoint locations in.

optional
end: Location | undefined

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 | undefined

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