@hysc/meeting 4.0.12 → 4.0.13
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/BMUser/BMUserVM.d.ts +10 -0
- package/esm/boom-meeting/src/util/Thread.d.ts +12 -0
- package/esm/index.js +2 -2
- package/esm/index.js.map +3 -3
- package/esm/src/BMUser/BMUserVM.d.ts +10 -0
- package/esm/src/util/Thread.d.ts +12 -0
- package/package.json +3 -3
- package/umd/boom-meeting/src/BMUser/BMUserVM.d.ts +10 -0
- package/umd/boom-meeting/src/util/Thread.d.ts +12 -0
- package/umd/index.js +2 -2
|
@@ -118,6 +118,16 @@ export default class BMUserVM {
|
|
|
118
118
|
* @param total
|
|
119
119
|
*/
|
|
120
120
|
initUsers(total: number): Promise<void>;
|
|
121
|
+
/**
|
|
122
|
+
* 拉取bloud全量用户
|
|
123
|
+
* @param pullQueue
|
|
124
|
+
*/
|
|
125
|
+
/**
|
|
126
|
+
* 把bloud用户转化为当前的BMUser 和创建对应的BMStreamModel
|
|
127
|
+
* @param page
|
|
128
|
+
* @param permission
|
|
129
|
+
*/
|
|
130
|
+
transBloudUsers: (page: number, permission?: string) => Promise<void>;
|
|
121
131
|
/**
|
|
122
132
|
* 本地嘉宾用户降级为普通参会者之后要取消拉流
|
|
123
133
|
*/
|