@tencentcloud/tuiroom-engine-js 1.4.2 → 1.4.3
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/index.cjs.js +2 -2
- package/index.d.ts +8 -0
- package/index.esm.js +2 -2
- package/index.js +2 -2
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1208,5 +1208,13 @@ declare class TUIRoomEngine {
|
|
|
1208
1208
|
*/
|
|
1209
1209
|
getTIM(): any;
|
|
1210
1210
|
destroy(): void;
|
|
1211
|
+
/**
|
|
1212
|
+
* 实验性接口
|
|
1213
|
+
* @private
|
|
1214
|
+
* @param jsonStr jason 字符串
|
|
1215
|
+
* @returns
|
|
1216
|
+
*/
|
|
1217
|
+
callExperimentalAPI(jsonStr: string): Promise<void>;
|
|
1218
|
+
private _handleSetFramework;
|
|
1211
1219
|
}
|
|
1212
1220
|
export default TUIRoomEngine;
|