@hysc/meeting 6.1.20 → 6.1.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/index.js +1 -1
- package/esm/src/BMRoom/BMRoom.d.ts +2 -10
- package/package.json +4 -4
- package/umd/index.js +1 -1
- package/umd/src/BMRoom/BMRoom.d.ts +2 -10
- package/esm/boom-meeting/src/BMRoom/BMRoom.d.ts +0 -703
- package/esm/index.js.map +0 -7
- package/umd/boom-meeting/src/BMRoom/BMRoom.d.ts +0 -703
|
@@ -187,15 +187,7 @@ export default class BMRoom {
|
|
|
187
187
|
/**
|
|
188
188
|
* 初始化输入设备
|
|
189
189
|
*/
|
|
190
|
-
initDevices(): Promise<
|
|
191
|
-
videoDevices: Device[];
|
|
192
|
-
audioDevices: Device[];
|
|
193
|
-
audioOutputDevices: Device[];
|
|
194
|
-
selectVideoDevice: Device | null;
|
|
195
|
-
selectAudioDevice: Device | null;
|
|
196
|
-
selectAudioOutputDevice: Device | null;
|
|
197
|
-
}>;
|
|
198
|
-
/**
|
|
190
|
+
initDevices(): Promise<any>; /**
|
|
199
191
|
* 筛选出默认选中的设备,如果没有,选择第一个
|
|
200
192
|
* @param devices
|
|
201
193
|
*/
|
|
@@ -203,7 +195,7 @@ export default class BMRoom {
|
|
|
203
195
|
/**
|
|
204
196
|
* 处理用户设备变化之后的逻辑
|
|
205
197
|
*/
|
|
206
|
-
|
|
198
|
+
handleMediaDevicesChange: () => Promise<void>;
|
|
207
199
|
setSelectAudioDevice(device: Device): void;
|
|
208
200
|
setSelectVideoDevice(device: Device): void;
|
|
209
201
|
setSelectSpeakerDevice(device: Device): void;
|