35f9c6d1e6
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
26 lines
608 B
Markdown
26 lines
608 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)>
|