// src/permissions.d.ts

interface PermissionDescriptor {
    name: 'camera' | 'microphone' | 'geolocation' | 'notifications' 
}

declare global {
  interface PermissionsQueryNameMap {
    camera: PermissionState;
    microphone: PermissionState;
    geolocation: PermissionState;
    notifications: PermissionState;
  }
}
