2023-08-02 12:50:46 +00:00
|
|
|
---
|
|
|
|
sidebar_label: install
|
|
|
|
---
|
|
|
|
|
|
|
|
# install() function
|
|
|
|
|
|
|
|
#### Signature:
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
export declare function install(
|
|
|
|
options: InstallOptions & {
|
|
|
|
unpack?: true;
|
|
|
|
}
|
|
|
|
): Promise<InstalledBrowser>;
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2023-12-06 08:04:56 +00:00
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | --------------------------------------------------------------------------------- | ----------- |
|
|
|
|
| options | [InstallOptions](./browsers.installoptions.md) & { unpack?: true; } | |
|
2023-08-02 12:50:46 +00:00
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<[InstalledBrowser](./browsers.installedbrowser.md)>
|