interface Debugger.SetBreakpointByUrlParameterType
Usage
import { type Debugger } from "node:inspector"; type { SetBreakpointByUrlParameterType } = Debugger;
optional
urlRegex: string | undefined
Regex pattern for the URLs of the resources to set breakpoints on. Either url or urlRegex must be specified.
optional
condition: string | undefined
Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.