mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 04:09:49 +00:00
Use new audio device module in alpha and beta
This commit is contained in:
14
ts/calling/audioDeviceModule.ts
Normal file
14
ts/calling/audioDeviceModule.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
// Copyright 2021 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import { makeEnumParser } from '../util/enum';
|
||||
|
||||
export enum AudioDeviceModule {
|
||||
Default = 'Default',
|
||||
WindowsAdm2 = 'WindowsAdm2',
|
||||
}
|
||||
|
||||
export const parseAudioDeviceModule = makeEnumParser(
|
||||
AudioDeviceModule,
|
||||
AudioDeviceModule.Default
|
||||
);
|
||||
Reference in New Issue
Block a user