mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24 lines
715 B
Markdown
24 lines
715 B
Markdown
|
---
|
||
|
sidebar_label: BrowserPlatform
|
||
|
---
|
||
|
|
||
|
# BrowserPlatform enum
|
||
|
|
||
|
Platform names used to identify a OS platfrom x architecture combination in the way that is relevant for the browser download.
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
export declare enum BrowserPlatform
|
||
|
```
|
||
|
|
||
|
## Enumeration Members
|
||
|
|
||
|
| Member | Value | Description |
|
||
|
| ------- | -------------------------------- | ----------- |
|
||
|
| LINUX | <code>"linux"</code> | |
|
||
|
| MAC | <code>"mac"</code> | |
|
||
|
| MAC_ARM | <code>"mac_arm"</code> | |
|
||
|
| WIN32 | <code>"win32"</code> | |
|
||
|
| WIN64 | <code>"win64"</code> | |
|