mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
23 lines
1.0 KiB
Markdown
23 lines
1.0 KiB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Debugger](./puppeteer.protocol.debugger.md) > [Location](./puppeteer.protocol.debugger.location.md)
|
|
|
|
## Protocol.Debugger.Location interface
|
|
|
|
Location in the source code.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
export interface Location
|
|
```
|
|
|
|
## Properties
|
|
|
|
| Property | Type | Description |
|
|
| --- | --- | --- |
|
|
| [columnNumber](./puppeteer.protocol.debugger.location.columnnumber.md) | [integer](./puppeteer.protocol.integer.md) | Column number in the script (0-based). |
|
|
| [lineNumber](./puppeteer.protocol.debugger.location.linenumber.md) | [integer](./puppeteer.protocol.integer.md) | Line number in the script (0-based). |
|
|
| [scriptId](./puppeteer.protocol.debugger.location.scriptid.md) | [Runtime.ScriptId](./puppeteer.protocol.runtime.scriptid.md) | Script identifier as reported in the <code>Debugger.scriptParsed</code>. |
|
|
|