mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
39e3d4bceb
Co-authored-by: Alex Rudenko <alexrudenko@chromium.org>
26 lines
638 B
Markdown
26 lines
638 B
Markdown
---
|
|
sidebar_label: install
|
|
---
|
|
|
|
# install() function
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
export declare function install(
|
|
options: InstallOptions & {
|
|
unpack?: true;
|
|
}
|
|
): Promise<InstalledBrowser>;
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | --------------------------------------------------------------------------------- | ----------- |
|
|
| options | [InstallOptions](./browsers.installoptions.md) & { unpack?: true; } | |
|
|
|
|
**Returns:**
|
|
|
|
Promise<[InstalledBrowser](./browsers.installedbrowser.md)>
|