docs: remove some redundant instances of @returns (#9943)

This commit is contained in:
Nikolay Vitkov
2023-03-30 13:54:00 +02:00
committed by GitHub
parent e0eef01f1c
commit 1396274477
106 changed files with 364 additions and 361 deletions

View File

@@ -44,11 +44,11 @@ Once you have created a `page` you have access to a large API to interact with t
## Properties
| Property | Modifiers | Type | Description |
| ------------------- | --------------------- | --------------------------------- | ----------- |
| defaultProduct | <code>readonly</code> | [Product](./puppeteer.product.md) | |
| lastLaunchedProduct | <code>readonly</code> | [Product](./puppeteer.product.md) | |
| product | <code>readonly</code> | string | |
| Property | Modifiers | Type | Description |
| ------------------- | --------------------- | --------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| defaultProduct | <code>readonly</code> | [Product](./puppeteer.product.md) | The name of the browser that will be launched by default. For <code>puppeteer</code>, this is influenced by your configuration. Otherwise, it's <code>chrome</code>. |
| lastLaunchedProduct | <code>readonly</code> | [Product](./puppeteer.product.md) | The name of the browser that was last launched. |
| product | <code>readonly</code> | string | |
## Methods
@@ -57,5 +57,5 @@ Once you have created a `page` you have access to a large API to interact with t
| [connect(options)](./puppeteer.puppeteernode.connect.md) | | This method attaches Puppeteer to an existing browser instance. |
| [createBrowserFetcher(options)](./puppeteer.puppeteernode.createbrowserfetcher.md) | | |
| [defaultArgs(options)](./puppeteer.puppeteernode.defaultargs.md) | | |
| [executablePath(channel)](./puppeteer.puppeteernode.executablepath.md) | | |
| [executablePath(channel)](./puppeteer.puppeteernode.executablepath.md) | | The default executable path. |
| [launch(options)](./puppeteer.puppeteernode.launch.md) | | <p>Launches a browser instance with given arguments and options when specified.</p><p>When using with <code>puppeteer-core</code>, [options.executablePath](./puppeteer.launchoptions.md) or [options.channel](./puppeteer.launchoptions.md) must be provided.</p> |