@trtc/call-engine-lite-js 3.5.5 → 3.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/index.cjs.js +2 -2
- package/index.cjs.js.map +1 -1
- package/index.d.ts +8 -0
- package/index.esm.js +2 -2
- package/index.esm.js.map +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -675,6 +675,7 @@ declare class TUICallEngine {
|
|
|
675
675
|
private _devices;
|
|
676
676
|
private _currentDevices;
|
|
677
677
|
private _isRegisterVirtualBackgroundModelFile;
|
|
678
|
+
private static _assetsPath;
|
|
678
679
|
private _isUseBasicBeautyPlugin;
|
|
679
680
|
constructor(options: ITUICallEngineOption);
|
|
680
681
|
static setModule(Module: any): void;
|
|
@@ -1101,6 +1102,13 @@ declare class TUICallEngine {
|
|
|
1101
1102
|
* @example
|
|
1102
1103
|
*/
|
|
1103
1104
|
getTim(): ChatSDK;
|
|
1105
|
+
/**
|
|
1106
|
+
* 静态实验性接口
|
|
1107
|
+
* @private
|
|
1108
|
+
* @param jsonStr jason 字符串
|
|
1109
|
+
* @returns
|
|
1110
|
+
*/
|
|
1111
|
+
static callExperimentalAPI(jsonStr: string): Promise<void>;
|
|
1104
1112
|
/**
|
|
1105
1113
|
* 实验性接口
|
|
1106
1114
|
* @private
|