TUICallType

接入侧需要的呼叫类型列表,详细如下:

Members

(static) AUDIO_CALL

通话类型 - 语音通话

Example
let onError = function(error) {
  console.log(error)
};
tuiCallEngine.call({userID: 'user1', type: TUICallType.AUDIO_CALL})

(static) VIDEO_CALL

通话类型 - 视频通话

Example
let onError = function(error) {
  console.log(error)
};
tuiCallEngine.call({userID: 'user1', type: TUICallType.VIDEO_CALL})

(static) DEVCIED_CAMERA

设备类型 - 摄像头

Example
let onError = function(error) {
  console.log(error)
};
tuiCallEngine.getDeviceList(TUICallType.DEVCIED_CARMERA) // 获取摄像头列表

(static) DEVCIED_MICROPHONES

设备类型 - 麦克风

Example
let onError = function(error) {
  console.log(error)
};
tuiCallEngine.getDeviceList(TUICallType.DEVCIED_CARMERA) // 获取麦克风列表