Skip to content

Type Alias: AudioOutputPortType

ts
type AudioOutputPortType = 
  | "builtInReceiver"
  | "builtInSpeaker"
  | "headphones"
  | "bluetoothA2DP"
  | "bluetoothLE"
  | "bluetoothHFP"
  | "airPlay"
  | "hdmi"
  | "carAudio"
  | "usbAudio"
  | "lineOut"
  | string & {
};

Defined in: Calls.types.ts:233

Cross-platform audio output port type identifiers. Both iOS and Android map their native audio device types to these shared values.

Released under the MIT License.