Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 485 Bytes

puppeteer.permission.md

File metadata and controls

29 lines (26 loc) · 485 Bytes
sidebar_label
Permission

Permission type

Signature:

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';