@hysc/meeting 5.0.79 → 5.0.81
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/audioPlay/AudioPlay.d.ts +1 -0
- package/esm/boom-meeting/src/handleEvent/handleRoomEvent.d.ts +1 -1
- package/esm/index.js +3 -3
- package/esm/index.js.map +3 -3
- package/esm/src/BMRoom/BMRoom.d.ts +695 -695
- package/esm/src/audioPlay/AudioPlay.d.ts +1 -0
- package/esm/src/handleEvent/handleRoomEvent.d.ts +1 -1
- package/package.json +3 -3
- package/umd/boom-meeting/src/audioPlay/AudioPlay.d.ts +1 -0
- package/umd/boom-meeting/src/handleEvent/handleRoomEvent.d.ts +1 -1
- package/umd/index.js +3 -3
- package/umd/src/BMRoom/BMRoom.d.ts +4 -3
|
@@ -624,10 +624,10 @@ export default class BMRoom {
|
|
|
624
624
|
* 处理播放相关的逻辑
|
|
625
625
|
* @param streamModel
|
|
626
626
|
* @param noPlayChanged
|
|
627
|
-
* @param
|
|
627
|
+
* @param shouldPlayBig
|
|
628
628
|
*/
|
|
629
|
-
handlePlay(streamModel: BMStreamModel, noPlayChanged: boolean,
|
|
630
|
-
handlePlayInBIg(streamModel: BMStreamModel
|
|
629
|
+
handlePlay(streamModel: BMStreamModel, noPlayChanged: boolean, shouldPlayBig?: boolean): Promise<void>;
|
|
630
|
+
handlePlayInBIg(streamModel: BMStreamModel): Promise<void>;
|
|
631
631
|
/**
|
|
632
632
|
* 处理brtc订阅这股流失败的处理
|
|
633
633
|
* @param streamModel
|
|
@@ -638,6 +638,7 @@ export default class BMRoom {
|
|
|
638
638
|
* @param event
|
|
639
639
|
*/
|
|
640
640
|
private handleStreamConnectError;
|
|
641
|
+
republishLocalStream: any;
|
|
641
642
|
/**
|
|
642
643
|
* 设置用户禁止/允许发言
|
|
643
644
|
* @param bmUser
|