@hysc/meeting 5.0.35 → 5.0.37
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 +2 -0
- package/esm/boom-meeting/src/BMStream/BMStreamModel.d.ts +5 -0
- package/esm/index.js +1 -1
- package/esm/index.js.map +2 -2
- package/esm/src/BMRoom/BMRoom.d.ts +673 -673
- package/esm/src/BMStream/BMStreamModel.d.ts +5 -0
- package/package.json +3 -3
- package/umd/boom-meeting/src/BMRoom/BMRoom.d.ts +2 -0
- package/umd/boom-meeting/src/BMStream/BMStreamModel.d.ts +5 -0
- package/umd/index.js +1 -1
|
@@ -111,6 +111,8 @@ export default class BMRoom {
|
|
|
111
111
|
bmLiveVM: BMLiveVM;
|
|
112
112
|
isInWaitRoom: boolean;
|
|
113
113
|
constructor({ initDevices }?: BMRoomProps);
|
|
114
|
+
handleReprocessStreamError: () => void;
|
|
115
|
+
initAudioPlayer(playerContainerId: string): void;
|
|
114
116
|
/**
|
|
115
117
|
* 初始化底层会控相关
|
|
116
118
|
* @param options
|
|
@@ -55,6 +55,11 @@ export default class BMStreamModel {
|
|
|
55
55
|
isInBigObserve: Subject<boolean>;
|
|
56
56
|
_hasPulled: boolean;
|
|
57
57
|
playerId: string;
|
|
58
|
+
/**
|
|
59
|
+
* 手动拉流配置
|
|
60
|
+
* shouldPull 是否应该拉
|
|
61
|
+
*/
|
|
62
|
+
shouldPull: boolean;
|
|
58
63
|
get hasPulled(): boolean;
|
|
59
64
|
set hasPulled(value: boolean);
|
|
60
65
|
/**
|