trtc-cloud-js-sdk 2.13.0 → 2.13.1-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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trtc-cloud-js-sdk",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.1-beta.1",
|
|
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",
|
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
"author": "Tencent Cloud Client R&D Center",
|
|
20
20
|
"license": "ISC",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"trtc-sdk-v5": "5.18.
|
|
22
|
+
"trtc-sdk-v5": "5.18.4-beta.8"
|
|
23
23
|
}
|
|
24
24
|
}
|
package/trtc-cloud-js-sdk.d.ts
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
1
|
import EventEmitter from 'eventemitter3';
|
|
2
|
-
import { VirtualBackground } from 'trtc-sdk-v5/plugins/video-effect/virtual-background';
|
|
3
|
-
import { BasicBeauty } from 'trtc-sdk-v5/plugins/video-effect/basic-beauty';
|
|
4
|
-
import VideoMixer from 'trtc-sdk-v5/plugins/video-effect/video-mixer';
|
|
5
|
-
import Whiteboard from 'trtc-sdk-v5/plugins/whiteboard';
|
|
6
2
|
|
|
7
3
|
declare enum TRTCVideoResolution {
|
|
8
4
|
TRTCVideoResolution_120_120 = 1,
|
|
@@ -1239,7 +1235,7 @@ declare class TRTC_Cloud extends EventEmitter {
|
|
|
1239
1235
|
private _hasJoinedRoom;
|
|
1240
1236
|
private _isExitingRoom;
|
|
1241
1237
|
constructor(config?: ITRTCCloudConfig);
|
|
1242
|
-
static getPlugin(pluginName: string):
|
|
1238
|
+
static getPlugin(pluginName: string): any;
|
|
1243
1239
|
/**
|
|
1244
1240
|
* 创建 TRTCCloud 对象单例
|
|
1245
1241
|
* @param {ITRTCCloudConfig} config 构造函数初始化
|