fix: mark CDPSessionOnMessageObject as internal (#10373)

This commit is contained in:
Alex Rudenko 2023-06-13 13:53:48 +02:00 committed by GitHub
parent b8db12fd8e
commit 7cb6059bcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 23 deletions

View File

@ -72,7 +72,6 @@ sidebar_label: API
| [BrowserConnectOptions](./puppeteer.browserconnectoptions.md) | Generic browser options that can be passed when launching any browser or when connecting to an existing browser instance. |
| [BrowserContextOptions](./puppeteer.browsercontextoptions.md) | BrowserContext options. |
| [BrowserLaunchArgumentOptions](./puppeteer.browserlaunchargumentoptions.md) | Launcher options that only apply to Chrome. |
| [CDPSessionOnMessageObject](./puppeteer.cdpsessiononmessageobject.md) | |
| [ClickOptions](./puppeteer.clickoptions.md) | |
| [CommonEventEmitter](./puppeteer.commoneventemitter.md) | |
| [Configuration](./puppeteer.configuration.md) | <p>Defines options to configure Puppeteer's behavior during installation and runtime.</p><p>See individual properties for more information.</p> |

View File

@ -1,21 +0,0 @@
---
sidebar_label: CDPSessionOnMessageObject
---
# CDPSessionOnMessageObject interface
#### Signature:
```typescript
export interface CDPSessionOnMessageObject
```
## Properties
| Property | Modifiers | Type | Description | Default |
| -------- | --------------------- | --------------------------------------------- | ----------- | ------- |
| error | | { message: string; data: any; code: number; } | | |
| id | <code>optional</code> | number | | |
| method | | string | | |
| params | | Record&lt;string, unknown&gt; | | |
| result | <code>optional</code> | any | | |

View File

@ -411,7 +411,7 @@ export class Connection extends EventEmitter {
}
/**
* @public
* @internal
*/
export interface CDPSessionOnMessageObject {
id?: number;