mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
30 lines
485 B
Markdown
30 lines
485 B
Markdown
---
|
|
sidebar_label: Permission
|
|
---
|
|
|
|
# Permission type
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
export type Permission =
|
|
| 'geolocation'
|
|
| 'midi'
|
|
| 'notifications'
|
|
| 'camera'
|
|
| 'microphone'
|
|
| 'background-sync'
|
|
| 'ambient-light-sensor'
|
|
| 'accelerometer'
|
|
| 'gyroscope'
|
|
| 'magnetometer'
|
|
| 'accessibility-events'
|
|
| 'clipboard-read'
|
|
| 'clipboard-write'
|
|
| 'clipboard-sanitized-write'
|
|
| 'payment-handler'
|
|
| 'persistent-storage'
|
|
| 'idle-detection'
|
|
| 'midi-sysex';
|
|
```
|