UNPKG

react-mic-cam-permissions

Version:

Managing camera and microphone permissions with React

15 lines (12 loc) 337 B
// src/permissions.d.ts interface PermissionDescriptor { name: 'camera' | 'microphone' | 'geolocation' | 'notifications' } declare global { interface PermissionsQueryNameMap { camera: PermissionState; microphone: PermissionState; geolocation: PermissionState; notifications: PermissionState; } }