@trtc/calls-uikit-react 4.4.7 → 4.4.9
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 +2 -2
- package/src/TUICallService/CallService/index.ts +2 -2
- package/src/TUICallService/TUIGlobal/tuiGlobal.ts +3 -1
- package/src/TUICallService/interface/ITUIGlobal.ts +2 -0
- package/src/TUICallService/utils/env.ts +6 -0
- package/src/index.ts +1 -1
- package/tuicall-uikit-react.es.js +1011 -1007
- package/tuicall-uikit-react.umd.js +3 -3
- package/types/TUICallService/TUIGlobal/tuiGlobal.d.ts +1 -0
- package/types/TUICallService/interface/ITUIGlobal.d.ts +2 -0
- package/types/TUICallService/utils/env.d.ts +2 -0
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* @property {Boolean} isOfficial true 标识是腾讯云官网 Demo 应用
|
|
10
10
|
* @property {Boolean} isWIN true 标识是window系统pc
|
|
11
11
|
* @property {Boolean} isMAC true 标识是mac os系统pc
|
|
12
|
+
* @property {Boolean} isWxHarmony true 标识是微信小程序运行在鸿蒙系统
|
|
12
13
|
*/
|
|
13
14
|
export interface ITUIGlobal {
|
|
14
15
|
global: any;
|
|
@@ -20,6 +21,7 @@ export interface ITUIGlobal {
|
|
|
20
21
|
isOfficial: boolean;
|
|
21
22
|
isWIN: boolean;
|
|
22
23
|
isMAC: boolean;
|
|
24
|
+
isWxHarmony: boolean;
|
|
23
25
|
/**
|
|
24
26
|
* 初始化 TUIGlobal 环境变量
|
|
25
27
|
* @function
|