We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4956e5d commit 7115f2eCopy full SHA for 7115f2e
CHANGELOG.md
@@ -1,3 +1,6 @@
1
+## 3.0.3(2025-6-18)
2
+1. 修复 registerDynamicSuperProperties().properties 在 TS 下的报错
3
+
4
## 2.4.0(2024-12-12)
5
1. 修复不支持 RN 0.7.x react-navigation 全埋点浏览
6
2. 修复 RN 0.7.x 部分情况下点击全埋点报错
index.d.ts
@@ -37,6 +37,10 @@ declare enum SAAutoTrackType {
37
VIEW_SCREEN = 8
38
}
39
40
+interface AnyObj {
41
+ [key: string]: any
42
+}
43
44
/**
45
* 登录
46
*
@@ -316,7 +320,7 @@ export function trackAppInstall(properties?: PropertiesObjectType): void;
316
320
* 注册事件动态公共属性
317
321
* @return 动态公共属性监听对象
318
322
*/
319
-export function registerDynamicSuperProperties(): object;
323
+export function registerDynamicSuperProperties(): AnyObj;
324
325
326
0 commit comments