2023-07-20 08:53:15 +00:00
|
|
|
---
|
|
|
|
sidebar_label: install_1
|
|
|
|
---
|
|
|
|
|
|
|
|
# install() function
|
|
|
|
|
|
|
|
#### Signature:
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
export declare function install(
|
|
|
|
options: InstallOptions & {
|
|
|
|
unpack: false;
|
|
|
|
}
|
|
|
|
): Promise<string>;
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
<table><thead><tr><th>
|
2023-07-20 08:53:15 +00:00
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
Parameter
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Type
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Description
|
|
|
|
|
|
|
|
</th></tr></thead>
|
|
|
|
<tbody><tr><td>
|
|
|
|
|
|
|
|
options
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
[InstallOptions](./browsers.installoptions.md) & { unpack: false; }
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
</tbody></table>
|
2023-07-20 08:53:15 +00:00
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<string>
|