@hysc/meeting 1.6.25 → 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.
|
@@ -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
|
/**
|
package/esm/BMUser/BMUserVM.d.ts
CHANGED
|
@@ -39,12 +39,6 @@ export default class BMUserVM {
|
|
|
39
39
|
* @param userId 用户id
|
|
40
40
|
*/
|
|
41
41
|
removeUser(userId: string): void;
|
|
42
|
-
/**
|
|
43
|
-
* 是否在userList找到该用户,返回true or false
|
|
44
|
-
* @param bcUser bcUser对象
|
|
45
|
-
* @returns
|
|
46
|
-
*/
|
|
47
|
-
findUser(bcUser: BCUser): boolean;
|
|
48
42
|
/**
|
|
49
43
|
* 获取用户视频开启状态
|
|
50
44
|
* @param userId 用户id
|