2023-04-06 12:23:10 +00:00
|
|
|
---
|
|
|
|
sidebar_label: install
|
|
|
|
---
|
|
|
|
|
|
|
|
# install() function
|
|
|
|
|
|
|
|
#### Signature:
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
export declare function install(
|
2023-07-20 08:53:15 +00:00
|
|
|
options: InstallOptions & {
|
|
|
|
unpack?: true;
|
|
|
|
}
|
2023-04-06 12:23:10 +00:00
|
|
|
): Promise<InstalledBrowser>;
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2023-11-29 12:06:05 +00:00
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | --------------------------------------------------------------------------------- | ----------- |
|
|
|
|
| options | [InstallOptions](./browsers.installoptions.md) & { unpack?: true; } | |
|
2023-04-06 12:23:10 +00:00
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
2023-04-06 12:50:22 +00:00
|
|
|
Promise<[InstalledBrowser](./browsers.installedbrowser.md)>
|