puppeteer/new-docs/puppeteer.protocol.debugger.getpossiblebreakpointsrequest.md

21 lines
1.2 KiB
Markdown
Raw Normal View History

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [puppeteer](./puppeteer.md) &gt; [Protocol](./puppeteer.protocol.md) &gt; [Debugger](./puppeteer.protocol.debugger.md) &gt; [GetPossibleBreakpointsRequest](./puppeteer.protocol.debugger.getpossiblebreakpointsrequest.md)
## Protocol.Debugger.GetPossibleBreakpointsRequest interface
<b>Signature:</b>
```typescript
export interface GetPossibleBreakpointsRequest
```
## Properties
| Property | Type | Description |
| --- | --- | --- |
| [end](./puppeteer.protocol.debugger.getpossiblebreakpointsrequest.end.md) | [Location](./puppeteer.protocol.debugger.location.md) | End of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range. |
| [restrictToFunction](./puppeteer.protocol.debugger.getpossiblebreakpointsrequest.restricttofunction.md) | boolean | Only consider locations which are in the same (non-nested) function as start. |
| [start](./puppeteer.protocol.debugger.getpossiblebreakpointsrequest.start.md) | [Location](./puppeteer.protocol.debugger.location.md) | Start of range to search possible breakpoint locations in. |