@hysc/meeting 7.0.117 → 7.0.118
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/boom-meeting/src/BMRoom/BMRoom.d.ts +1 -8
- package/esm/boom-meeting/src/util/benchmark.d.ts +1 -0
- package/esm/index.js +1 -1
- package/esm/src/BMRoom/BMRoom.d.ts +1 -8
- package/esm/src/util/benchmark.d.ts +1 -0
- package/package.json +5 -5
- package/umd/boom-meeting/src/BMRoom/BMRoom.d.ts +1 -8
- package/umd/boom-meeting/src/util/benchmark.d.ts +1 -0
- package/umd/index.js +1 -1
- package/umd/src/BMRoom/BMRoom.d.ts +715 -0
|
@@ -165,14 +165,7 @@ export default class BMRoom {
|
|
|
165
165
|
/**
|
|
166
166
|
* 初始化输入设备
|
|
167
167
|
*/
|
|
168
|
-
initDevices(): Promise<
|
|
169
|
-
videoDevices: Device[];
|
|
170
|
-
audioDevices: Device[];
|
|
171
|
-
audioOutputDevices: Device[];
|
|
172
|
-
selectVideoDevice: Device | null;
|
|
173
|
-
selectAudioDevice: Device | null;
|
|
174
|
-
selectAudioOutputDevice: Device | null;
|
|
175
|
-
}>;
|
|
168
|
+
initDevices(): Promise<any>;
|
|
176
169
|
/**
|
|
177
170
|
* 筛选出默认选中的设备,如果没有,选择第一个
|
|
178
171
|
* @param devices
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function benchmark(): () => number;
|