Bun

interface

inspector.Debugger.SetBreakpointByUrlParameterType

interface SetBreakpointByUrlParameterType

  • columnNumber?: number

    Offset in the line to set breakpoint at.

  • condition?: string

    Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.

  • lineNumber: number

    Line number to set breakpoint at.

  • scriptHash?: string

    Script hash of the resources to set breakpoint on.

  • url?: string

    URL of the resources to set breakpoint on.

  • urlRegex?: string

    Regex pattern for the URLs of the resources to set breakpoints on. Either <code>url</code> or <code>urlRegex</code> must be specified.