@hysc/meeting 10.5.5 → 10.5.6
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/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2290,9 +2290,10 @@ declare class BMRoom {
|
|
|
2290
2290
|
* 更新房间自定义属性状态
|
|
2291
2291
|
* @param {Object} customStats - 更新自定义房间信息参数
|
|
2292
2292
|
* @param {Boolean} customStats.layoutMode - 0/1/2, // 默认为0,0:自由模式,可随时切换;1:是使用 defaultLayout,布局内可控;2:是使用 mainLayout,主会场同内容
|
|
2293
|
+
* @param {Boolean} replace - 是否替换 当前的对象
|
|
2293
2294
|
* @returns {Promise}
|
|
2294
2295
|
*/
|
|
2295
|
-
updateCustomStats(customStats: any): Promise<any>;
|
|
2296
|
+
updateCustomStats(customStats: any, replace: boolean): Promise<any>;
|
|
2296
2297
|
/**
|
|
2297
2298
|
* 获取自定义属性
|
|
2298
2299
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -2290,9 +2290,10 @@ declare class BMRoom {
|
|
|
2290
2290
|
* 更新房间自定义属性状态
|
|
2291
2291
|
* @param {Object} customStats - 更新自定义房间信息参数
|
|
2292
2292
|
* @param {Boolean} customStats.layoutMode - 0/1/2, // 默认为0,0:自由模式,可随时切换;1:是使用 defaultLayout,布局内可控;2:是使用 mainLayout,主会场同内容
|
|
2293
|
+
* @param {Boolean} replace - 是否替换 当前的对象
|
|
2293
2294
|
* @returns {Promise}
|
|
2294
2295
|
*/
|
|
2295
|
-
updateCustomStats(customStats: any): Promise<any>;
|
|
2296
|
+
updateCustomStats(customStats: any, replace: boolean): Promise<any>;
|
|
2296
2297
|
/**
|
|
2297
2298
|
* 获取自定义属性
|
|
2298
2299
|
*/
|