trtc-cloud-js-sdk 2.13.0-beta.12 → 2.13.0-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trtc-cloud-js-sdk",
3
- "version": "2.13.0-beta.12",
3
+ "version": "2.13.0-beta.13",
4
4
  "description": "Tencent Cloud RTC SDK for Web And Electron",
5
5
  "main": "trtc-cloud-js-sdk.js",
6
6
  "module": "trtc-cloud-js-sdk.esm.js",
@@ -1024,8 +1024,6 @@ declare class TRTCWhiteboardManager implements ITRTCWhiteboardManager {
1024
1024
  private trtc;
1025
1025
  private trtcCloud;
1026
1026
  private readonly eventEmitter;
1027
- private boundPlugin;
1028
- private readonly pluginEventHandlers;
1029
1027
  private started;
1030
1028
  constructor(options: {
1031
1029
  trtc: any;
@@ -1036,9 +1034,8 @@ declare class TRTCWhiteboardManager implements ITRTCWhiteboardManager {
1036
1034
  private _update;
1037
1035
  private _stop;
1038
1036
  private _applyLocalOp;
1039
- /** 按翻译表把插件事件及跨端预留事件转成 native event_type 上抛;同一插件实例只绑一次。 */
1037
+ /** 每次启动前绑定事件;插件会在 stop 时自动清理本次监听。 */
1040
1038
  private _bindPluginEvents;
1041
- private _unbindPluginEvents;
1042
1039
  /**
1043
1040
  * 对齐 native 的事件上抛:
1044
1041
  * 1. 通过 trtcCloud 主监听回调抛 onExperimentalEvent(name, paramsJson)——与 native 一致;