mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
docs: clarify the path attribute of InstalledBrowser (#10588)
This commit is contained in:
parent
830f926d48
commit
54c6ff2f3c
@ -13,8 +13,8 @@ export interface InstalledBrowser
|
|||||||
## Properties
|
## Properties
|
||||||
|
|
||||||
| Property | Modifiers | Type | Description | Default |
|
| Property | Modifiers | Type | Description | Default |
|
||||||
| -------- | --------- | ------------------------------------------------ | ----------- | ------- |
|
| -------- | --------- | ------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
|
||||||
| browser | | [Browser](./browsers.browser.md) | | |
|
| browser | | [Browser](./browsers.browser.md) | | |
|
||||||
| buildId | | string | | |
|
| buildId | | string | | |
|
||||||
| path | | string | | |
|
| path | | string | Path to the root of the installation folder. Use [computeExecutablePath()](./browsers.computeexecutablepath.md) to get the path to the executable binary. | |
|
||||||
| platform | | [BrowserPlatform](./browsers.browserplatform.md) | | |
|
| platform | | [BrowserPlatform](./browsers.browserplatform.md) | | |
|
||||||
|
@ -23,6 +23,10 @@ import {Browser, BrowserPlatform} from './browser-data/browser-data.js';
|
|||||||
* @public
|
* @public
|
||||||
*/
|
*/
|
||||||
export interface InstalledBrowser {
|
export interface InstalledBrowser {
|
||||||
|
/**
|
||||||
|
* Path to the root of the installation folder. Use
|
||||||
|
* {@link computeExecutablePath} to get the path to the executable binary.
|
||||||
|
*/
|
||||||
path: string;
|
path: string;
|
||||||
browser: Browser;
|
browser: Browser;
|
||||||
buildId: string;
|
buildId: string;
|
||||||
|
Loading…
Reference in New Issue
Block a user