Skip to content

Commit

Permalink
generate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jackfranklin committed Jul 9, 2020
1 parent 76736e7 commit 53360e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion new-docs/puppeteer.cdpsession.md
Expand Up @@ -41,5 +41,5 @@ await client.send('Animation.setPlaybackRate', {
| Method | Modifiers | Description |
| --- | --- | --- |
| [detach()](./puppeteer.cdpsession.detach.md) | | Detaches the cdpSession from the target. Once detached, the cdpSession object won't emit any events and can't be used to send messages. |
| [send(method, params)](./puppeteer.cdpsession.send.md) | | |
| [send(method, paramArgs)](./puppeteer.cdpsession.send.md) | | |
4 changes: 2 additions & 2 deletions new-docs/puppeteer.cdpsession.send.md
Expand Up @@ -7,15 +7,15 @@
<b>Signature:</b>

```typescript
send<T extends keyof ProtocolMapping.Commands>(method: T, params?: ProtocolMapping.Commands[T]['paramsType'][0]): Promise<ProtocolMapping.Commands[T]['returnType']>;
send<T extends keyof ProtocolMapping.Commands>(method: T, ...paramArgs: ProtocolMapping.Commands[T]['paramsType']): Promise<ProtocolMapping.Commands[T]['returnType']>;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| method | T | |
| params | ProtocolMapping.Commands\[T\]\['paramsType'\]\[0\] | |
| paramArgs | ProtocolMapping.Commands\[T\]\['paramsType'\] | |
<b>Returns:</b>
Expand Down

0 comments on commit 53360e2

Please sign in to comment.