You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.ts 449B

1234567891011
  1. /**
  2. * Prefixes of devices that will be filtered from the device list.
  3. *
  4. * NOTE: It seems that the filtered devices can't be set
  5. * as default device on the OS level and this use case is not handled in the code. If we add more device prefixes that
  6. * can be default devices we should make sure to handle the default device use case.
  7. */
  8. export const DEVICE_LABEL_PREFIXES_TO_IGNORE = [
  9. 'Microsoft Teams Audio Device',
  10. 'ZoomAudioDevice'
  11. ];