@hysc/meeting 1.6.26 → 1.6.27
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/BMStream/BMStreamModel.d.ts +5 -0
- package/esm/index.js +1 -1
- package/esm/index.js.map +2 -2
- package/package.json +1 -1
- package/umd/BMStream/BMStreamModel.d.ts +5 -0
- package/umd/index.js +1 -1
|
@@ -31,6 +31,11 @@ export default class BMStreamModel {
|
|
|
31
31
|
streamUpdateWatcher: Subject<boolean>;
|
|
32
32
|
isSubScribedWatcher: Subject<boolean>;
|
|
33
33
|
playStateChangeWatcher: Subject<BMStreamModel>;
|
|
34
|
+
/**
|
|
35
|
+
* 找不到播放器,说明当前的streamModel可能是销毁重建的,或者是业务上绑定失败的,这个时候给端上一个提示,让他重新绑定一下播放器
|
|
36
|
+
*/
|
|
37
|
+
noContainerWatcher: Subject<boolean>;
|
|
38
|
+
noBigContainerWatcher: Subject<boolean>;
|
|
34
39
|
audioLevelWatcher: Subject<number>;
|
|
35
40
|
isCurrentDisplay: boolean;
|
|
36
41
|
/**
|