@tencentcloud/tuiroom-engine-js 1.3.1 → 1.3.2-beta.1

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.d.ts CHANGED
@@ -1207,6 +1207,16 @@ declare class TUIRoomEngine {
1207
1207
  * const trtcCloud = roomEngine.getTIM();
1208
1208
  */
1209
1209
  getTIM(): any;
1210
+ /**
1211
+ * 获取 tSignaling 实例
1212
+ * @returns {TSignaling} tim
1213
+ * web 端 tim 能力请查看:https://web.sdk.qcloud.com/im/doc/zh-cn/SDK.html
1214
+ *
1215
+ * @example
1216
+ * const roomEngine = new TUIRoomEngine();
1217
+ * const trtcCloud = roomEngine.tSignaling();
1218
+ */
1219
+ getTSignaling(): any;
1210
1220
  destroy(): void;
1211
1221
  }
1212
1222
  export default TUIRoomEngine;