@dcloudio/uni-app-x 0.5.5 → 0.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.
Files changed (62) hide show
  1. package/package.json +1 -1
  2. package/types/app.d.ts +17 -8
  3. package/types/native/AsyncApiResult.d.ts +1 -1
  4. package/types/native/CSSStyleDeclaration.d.ts +2 -2
  5. package/types/native/DrawableContext.d.ts +2 -2
  6. package/types/native/Element.d.ts +36 -5
  7. package/types/native/IDocument.d.ts +2 -3
  8. package/types/native/IPage.d.ts +1 -1
  9. package/types/native/IUniError.d.ts +1 -1
  10. package/types/native/NodeData.d.ts +1 -1
  11. package/types/native/SnapshotOptions.d.ts +63 -0
  12. package/types/native/UniAppManager.d.ts +1 -1
  13. package/types/native/UniElement.d.ts +97 -0
  14. package/types/native/UniTabsElement.d.ts +86 -0
  15. package/types/native/UniTextElement.d.ts +13 -0
  16. package/types/native/UniVideoElement.d.ts +70 -0
  17. package/types/native/{IWebViewNode.d.ts → UniWebViewElement.d.ts} +5 -2
  18. package/types/native/WebViewDownloadEvent.d.ts +37 -0
  19. package/types/native/WebViewErrorEvent.d.ts +26 -7
  20. package/types/native/WebViewLoadedEvent.d.ts +15 -2
  21. package/types/native/WebViewLoadingEvent.d.ts +15 -2
  22. package/types/native/WebViewMessageEvent.d.ts +15 -7
  23. package/types/native/WebViewStyles.d.ts +20 -0
  24. package/types/native/index.d.ts +8 -4
  25. package/types/shims-vue.d.ts +4 -2
  26. package/types/uni/core/lib/base/event/interface.d.ts +3 -6
  27. package/types/uni/core/lib/ui/get-element-by-id/interface.d.ts +3 -2
  28. package/types/uni/core/lib/ui/pull-down-refresh/index.d.ts +4 -0
  29. package/types/uni/core/lib/ui/pull-down-refresh/interface.d.ts +10 -1
  30. package/types/uni/core/lib/ui/tab-bar/interface.d.ts +4 -8
  31. package/types/uni/uts-plugin-api/index.d.ts +1 -2
  32. package/types/uni/uts-plugin-api/lib/uni-getAccessibilityInfo/utssdk/interface.d.ts +2 -2
  33. package/types/uni/uts-plugin-api/lib/uni-getAppAuthorizeSetting/utssdk/interface.d.ts +86 -86
  34. package/types/uni/uts-plugin-api/lib/uni-getAppBaseInfo/utssdk/interface.d.ts +103 -103
  35. package/types/uni/uts-plugin-api/lib/uni-getDeviceInfo/utssdk/interface.d.ts +52 -52
  36. package/types/uni/uts-plugin-api/lib/uni-getNetworkType/utssdk/interface.d.ts +4 -4
  37. package/types/uni/uts-plugin-api/lib/uni-getSystemInfo/utssdk/interface.d.ts +82 -82
  38. package/types/uni/uts-plugin-api/lib/uni-getSystemSetting/utssdk/interface.d.ts +2 -2
  39. package/types/uni/uts-plugin-api/lib/uni-media/utssdk/interface.d.ts +10 -10
  40. package/types/uni/uts-plugin-api/lib/uni-network/utssdk/app-ios/interface.d.ts +59 -56
  41. package/types/uni/uts-plugin-api/lib/uni-network/utssdk/interface.d.ts +116 -97
  42. package/types/uni/uts-plugin-api/lib/uni-openAppAuthorizeSetting/utssdk/interface.d.ts +4 -4
  43. package/types/uni/uts-plugin-api/lib/uni-push/utssdk/index.d.ts +55 -0
  44. package/types/uni/uts-plugin-api/lib/uni-push/utssdk/interface.d.ts +338 -0
  45. package/types/uni/uts-plugin-api/lib/uni-websocket/utssdk/interface.d.ts +39 -39
  46. package/types/uni-cloud/interface.d.ts +10 -10
  47. package/types/vue/CheckboxGroupChangeEvent.d.ts +13 -0
  48. package/types/vue/PickerViewChangeEvent.d.ts +13 -0
  49. package/types/vue/ProgressActiveendEvent.d.ts +7 -0
  50. package/types/vue/RadioGroupChangeEvent.d.ts +13 -0
  51. package/types/vue/SliderChangeEvent.d.ts +2 -2
  52. package/types/vue/SwitchChangeEvent.d.ts +7 -0
  53. package/types/vue/UniButtonElement.d.ts +7 -0
  54. package/types/vue/UniCloudDBElement.d.ts +213 -0
  55. package/types/vue/UniNavigatorElement.d.ts +7 -0
  56. package/types/vue/index.d.ts +3 -0
  57. package/types/native/DomNode.d.ts +0 -48
  58. package/types/native/ITabsNode.d.ts +0 -36
  59. package/types/uni/uts-plugin-api/lib/uni-audio/utssdk/index.d.ts +0 -17
  60. package/types/uni/uts-plugin-api/lib/uni-audio/utssdk/interface.d.ts +0 -804
  61. package/types/uni/uts-plugin-api/lib/uni-getRecorderManager/utssdk/index.d.ts +0 -15
  62. package/types/uni/uts-plugin-api/lib/uni-getRecorderManager/utssdk/interface.d.ts +0 -213
@@ -1,41 +1,41 @@
1
1
  export type GetAppBaseInfoOptions = {
2
2
  /**
3
3
  * @description 过滤字段的字符串数组,假如要获取指定字段,传入此数组。
4
- */
5
- filter: Array<string>
6
- };
7
-
8
- export type GetAppBaseInfoResult = {
9
- /**
10
- * manifest.json 中应用appid,即DCloud appid。
11
- */
12
- appId?: string,
13
- /**
14
- * manifest.json 中应用名称
15
- */
16
- appName?: string,
17
- /**
18
- * manifest.json 中应用版本名称。
19
- */
20
- appVersion?: string,
21
- /**
22
- * manifest.json 中应用版本名号。
23
- */
24
- appVersionCode?: string,
25
- /**
26
- * 应用设置的语言en、zh-Hans、zh-Hant、fr、es
27
- */
28
- appLanguage?: string,
29
- /**
30
- * 应用设置的语言
31
- */
32
- language?: string,
33
- /**
34
- * 引擎版本号
35
- * @deprecated 已废弃,仅为了向下兼容保留
36
- */
37
- version?: string,
38
- /**
4
+ */
5
+ filter: Array<string>
6
+ };
7
+
8
+ export type GetAppBaseInfoResult = {
9
+ /**
10
+ * manifest.json 中应用appid,即DCloud appid。
11
+ */
12
+ appId?: string,
13
+ /**
14
+ * `manifest.json` 中应用名称。
15
+ */
16
+ appName?: string,
17
+ /**
18
+ * `manifest.json` 中应用版本名称。
19
+ */
20
+ appVersion?: string,
21
+ /**
22
+ * `manifest.json` 中应用版本名号。
23
+ */
24
+ appVersionCode?: string,
25
+ /**
26
+ * 应用设置的语言en、zh-Hans、zh-Hant、fr、es
27
+ */
28
+ appLanguage?: string,
29
+ /**
30
+ * 应用设置的语言
31
+ */
32
+ language?: string,
33
+ /**
34
+ * 引擎版本号。已废弃,仅为了向下兼容保留
35
+ * @deprecated 已废弃,仅为了向下兼容保留
36
+ */
37
+ version?: string,
38
+ /**
39
39
  * 应用资源(wgt)的版本名称。
40
40
  *
41
41
  * @uniPlatform {
@@ -51,10 +51,10 @@ export type GetAppBaseInfoResult = {
51
51
  * "unixVer": "x"
52
52
  * }
53
53
  * }
54
- * }
55
- */
56
- appWgtVersion?: string,
57
- /**
54
+ * }
55
+ */
56
+ appWgtVersion?: string,
57
+ /**
58
58
  * 小程序宿主语言
59
59
  *
60
60
  * @uniPlatform {
@@ -70,10 +70,10 @@ export type GetAppBaseInfoResult = {
70
70
  * "unixVer": "x"
71
71
  * }
72
72
  * }
73
- * }
74
- */
75
- hostLanguage?: string,
76
- /**
73
+ * }
74
+ */
75
+ hostLanguage?: string,
76
+ /**
77
77
  * App、小程序宿主版本。
78
78
  *
79
79
  * @uniPlatform {
@@ -89,10 +89,10 @@ export type GetAppBaseInfoResult = {
89
89
  * "unixVer": "x"
90
90
  * }
91
91
  * }
92
- * }
93
- */
94
- hostVersion?: string,
95
- /**
92
+ * }
93
+ */
94
+ hostVersion?: string,
95
+ /**
96
96
  * 小程序宿主名称
97
97
  *
98
98
  * @uniPlatform {
@@ -108,10 +108,10 @@ export type GetAppBaseInfoResult = {
108
108
  * "unixVer": "x"
109
109
  * }
110
110
  * }
111
- * }
112
- */
113
- hostName?: string,
114
- /**
111
+ * }
112
+ */
113
+ hostName?: string,
114
+ /**
115
115
  * 小程序宿主包名
116
116
  *
117
117
  * @uniPlatform {
@@ -127,10 +127,10 @@ export type GetAppBaseInfoResult = {
127
127
  * "unixVer": "x"
128
128
  * }
129
129
  * }
130
- * }
131
- */
132
- hostPackageName?: string,
133
- /**
130
+ * }
131
+ */
132
+ hostPackageName?: string,
133
+ /**
134
134
  * uni小程序SDK版本、小程序客户端基础库版本
135
135
  *
136
136
  * @uniPlatform {
@@ -146,10 +146,10 @@ export type GetAppBaseInfoResult = {
146
146
  * "unixVer": "x"
147
147
  * }
148
148
  * }
149
- * }
150
- */
151
- hostSDKVersion?: string,
152
- /**
149
+ * }
150
+ */
151
+ hostSDKVersion?: string,
152
+ /**
153
153
  * 系统当前主题,取值为light或dark。微信小程序全局配置"darkmode":true时才能获取,否则为 undefined (不支持小游戏)
154
154
  *
155
155
  * @uniPlatform {
@@ -165,12 +165,12 @@ export type GetAppBaseInfoResult = {
165
165
  * "unixVer": "x"
166
166
  * }
167
167
  * }
168
- * }
169
- */
170
- hostTheme?: string,
171
- /**
172
- * 是否uni-app x
173
- */
168
+ * }
169
+ */
170
+ hostTheme?: string,
171
+ /**
172
+ * 是否uni-app x
173
+ */
174
174
  isUniAppX ?: boolean,
175
175
  /**
176
176
  * uni 编译器版本
@@ -191,43 +191,43 @@ export type GetAppBaseInfoResult = {
191
191
  /**
192
192
  * uni 运行时版本号
193
193
  */
194
- uniRuntimeVersionCode?: number,
195
- }
196
-
194
+ uniRuntimeVersionCode?: number,
195
+ }
196
+
197
197
  /**
198
198
  * @param{GetAppBaseInfoOptions} [options=包含所有字段的过滤对象] 过滤的字段对象, 不传参数默认为获取全部字段。
199
- */
200
- export type GetAppBaseInfo = (options?: GetAppBaseInfoOptions | null) => GetAppBaseInfoResult;
201
-
202
-
203
- export interface Uni {
204
- /**
205
- * GetAppBaseInfo(Object object)
206
- * @description
207
- * 获取app基本信息
208
- * @param {GetAppBaseInfoOptions} options [options=包含所有字段的过滤对象] 过滤的字段对象, 不传参数默认为获取全部字段。
209
- * @return {object}
210
- * @tutorial https://uniapp.dcloud.net.cn/api/system/getAppBaseInfo.html
211
- * @uniPlatform {
212
- * "app": {
213
- * "android": {
214
- * "osVer": "4.4",
215
- * "uniVer": "√",
216
- * "unixVer": "3.9.0"
217
- * },
218
- * "ios": {
219
- * "osVer": "9.0",
220
- * "uniVer": "√",
221
- * "unixVer": "3.9.0"
222
- * }
223
- * }
224
- * }
225
- * @example
226
- ```typescript
227
- uni.getAppBaseInfo({
228
- filter:[]
229
- })
230
- ```
231
- */
232
- getAppBaseInfo(options?: GetAppBaseInfoOptions | null): GetAppBaseInfoResult;
233
- }
199
+ */
200
+ export type GetAppBaseInfo = (options?: GetAppBaseInfoOptions | null) => GetAppBaseInfoResult;
201
+
202
+
203
+ export interface Uni {
204
+ /**
205
+ * GetAppBaseInfo(Object object)
206
+ * @description
207
+ * 获取app基本信息
208
+ * @param {GetAppBaseInfoOptions} options [options=包含所有字段的过滤对象] 过滤的字段对象, 不传参数默认为获取全部字段。
209
+ * @return {object}
210
+ * @tutorial https://uniapp.dcloud.net.cn/api/system/getAppBaseInfo.html
211
+ * @uniPlatform {
212
+ * "app": {
213
+ * "android": {
214
+ * "osVer": "4.4",
215
+ * "uniVer": "√",
216
+ * "unixVer": "3.9+"
217
+ * },
218
+ * "ios": {
219
+ * "osVer": "9.0",
220
+ * "uniVer": "√",
221
+ * "unixVer": "3.9+"
222
+ * }
223
+ * }
224
+ * }
225
+ * @example
226
+ ```typescript
227
+ uni.getAppBaseInfo({
228
+ filter:[]
229
+ })
230
+ ```
231
+ */
232
+ getAppBaseInfo(options?: GetAppBaseInfoOptions | null): GetAppBaseInfoResult;
233
+ }
@@ -1,6 +1,6 @@
1
- export type GetDeviceInfoOptions = {
2
- /**
3
- * @description 过滤字段的字符串数组,假如要获取指定字段,传入此数组。
1
+ export type GetDeviceInfoOptions = {
2
+ /**
3
+ * @description 过滤字段的字符串数组,假如要获取指定字段,传入此数组。
4
4
  */
5
5
  filter: Array<string>
6
6
  }
@@ -47,21 +47,21 @@ export type GetDeviceInfoResult = {
47
47
  */
48
48
  platform?: string,
49
49
  /**
50
- * oaid标识 Android专有
51
- *
52
- * @uniPlatform {
53
- * "app": {
54
- * "android": {
55
- * "osVer": "5.0",
56
- * "uniVer": "√",
57
- * "unixVer": "√"
58
- * },
59
- * "ios": {
60
- * "osVer": "9.0",
61
- * "uniVer": "x",
62
- * "unixVer": "x"
63
- * }
64
- * }
50
+ * oaid标识 Android专有
51
+ *
52
+ * @uniPlatform {
53
+ * "app": {
54
+ * "android": {
55
+ * "osVer": "5.0",
56
+ * "uniVer": "√",
57
+ * "unixVer": "√"
58
+ * },
59
+ * "ios": {
60
+ * "osVer": "9.0",
61
+ * "uniVer": "x",
62
+ * "unixVer": "x"
63
+ * }
64
+ * }
65
65
  * }
66
66
  */
67
67
  oaid?: string,
@@ -74,40 +74,40 @@ export type GetDeviceInfoResult = {
74
74
  */
75
75
  isSimulator?: boolean,
76
76
  /**
77
- * adb是否开启
78
- *
79
- * @uniPlatform {
80
- * "app": {
81
- * "android": {
82
- * "osVer": "5.0",
83
- * "uniVer": "√",
84
- * "unixVer": "√"
85
- * },
86
- * "ios": {
87
- * "osVer": "9.0",
88
- * "uniVer": "x",
89
- * "unixVer": "x"
90
- * }
91
- * }
77
+ * adb是否开启
78
+ *
79
+ * @uniPlatform {
80
+ * "app": {
81
+ * "android": {
82
+ * "osVer": "5.0",
83
+ * "uniVer": "√",
84
+ * "unixVer": "√"
85
+ * },
86
+ * "ios": {
87
+ * "osVer": "9.0",
88
+ * "uniVer": "x",
89
+ * "unixVer": "x"
90
+ * }
91
+ * }
92
92
  * }
93
93
  */
94
94
  isUSBDebugging?: boolean,
95
95
  /**
96
- * idfa标识 iOS专有
97
- *
98
- * @uniPlatform {
99
- * "app": {
100
- * "android": {
101
- * "osVer": "5.0",
102
- * "uniVer": "x",
103
- * "unixVer": "x"
104
- * },
105
- * "ios": {
106
- * "osVer": "9.0",
107
- * "uniVer": "√",
108
- * "unixVer": "√"
109
- * }
110
- * }
96
+ * idfa标识 iOS专有
97
+ *
98
+ * @uniPlatform {
99
+ * "app": {
100
+ * "android": {
101
+ * "osVer": "5.0",
102
+ * "uniVer": "x",
103
+ * "unixVer": "x"
104
+ * },
105
+ * "ios": {
106
+ * "osVer": "9.0",
107
+ * "uniVer": "√",
108
+ * "unixVer": "√"
109
+ * }
110
+ * }
111
111
  * }
112
112
  */
113
113
  idfa?: string,
@@ -117,8 +117,8 @@ export type GetDeviceInfoResult = {
117
117
  }
118
118
 
119
119
 
120
- /**
121
- * @param [options=包含所有字段的过滤对象] 过滤的字段对象, 不传参数默认为获取全部字段。
120
+ /**
121
+ * @param [options=包含所有字段的过滤对象] 过滤的字段对象, 不传参数默认为获取全部字段。
122
122
  */
123
123
  export type GetDeviceInfo = (options?: GetDeviceInfoOptions | null) => GetDeviceInfoResult;
124
124
 
@@ -136,12 +136,12 @@ export interface Uni {
136
136
  * "android": {
137
137
  * "osVer": "4.4",
138
138
  * "uniVer": "√",
139
- * "unixVer": "3.9.0"
139
+ * "unixVer": "3.9+"
140
140
  * },
141
141
  * "ios": {
142
142
  * "osVer": "9.0",
143
143
  * "uniVer": "√",
144
- * "unixVer": "3.9.0"
144
+ * "unixVer": "3.9+"
145
145
  * }
146
146
  * }
147
147
  * }
@@ -11,7 +11,7 @@ export interface Uni {
11
11
  * "android": {
12
12
  * "osVer": "4.4",
13
13
  * "uniVer": "√",
14
- * "unixVer": "3.9.0"
14
+ * "unixVer": "3.9+"
15
15
  * },
16
16
  * "ios": {
17
17
  * "osVer": "9.0",
@@ -46,17 +46,17 @@ export type GetNetworkTypeComplete = any;
46
46
  export type GetNetworkTypeCompleteCallback = (result: GetNetworkTypeComplete) => void;
47
47
  export type GetNetworkTypeOptions = {
48
48
  /**
49
- * 接口调用成功的回调函数
49
+ * 接口调用成功的回调函数
50
50
  * @defaultValue null
51
51
  */
52
52
  success?: GetNetworkTypeSuccessCallback | null,
53
53
  /**
54
- * 接口调用失败的回调函数
54
+ * 接口调用失败的回调函数
55
55
  * @defaultValue null
56
56
  */
57
57
  fail?: GetNetworkTypeFailCallback | null,
58
58
  /**
59
- * 接口调用结束的回调函数(调用成功、失败都会执行)
59
+ * 接口调用结束的回调函数(调用成功、失败都会执行)
60
60
  * @defaultValue null
61
61
  */
62
62
  complete?: GetNetworkTypeCompleteCallback | null
@@ -11,7 +11,7 @@ export interface Uni {
11
11
  * "android": {
12
12
  * "osVer": "4.4",
13
13
  * "uniVer": "√",
14
- * "unixVer": "3.9.0"
14
+ * "unixVer": "3.9+"
15
15
  * },
16
16
  * "ios": {
17
17
  * "osVer": "9.0",
@@ -46,7 +46,7 @@ export interface Uni {
46
46
  * "android": {
47
47
  * "osVer": "4.4",
48
48
  * "uniVer": "√",
49
- * "unixVer": "3.9.0"
49
+ * "unixVer": "3.9+"
50
50
  * },
51
51
  * "ios": {
52
52
  * "osVer": "9.0",
@@ -74,7 +74,7 @@ export interface Uni {
74
74
  * "android": {
75
75
  * "osVer": "4.4",
76
76
  * "uniVer": "√",
77
- * "unixVer": "3.9.0"
77
+ * "unixVer": "3.9+"
78
78
  * },
79
79
  * "ios": {
80
80
  * "osVer": "9.0",
@@ -156,29 +156,29 @@ export type GetSystemInfoResult = {
156
156
  */
157
157
  appName: string,
158
158
  /**
159
- * `manifest.json` 中应用版本名称(真机运行时,为基座的版本名称)。
159
+ * `manifest.json` 中应用版本名称。
160
160
  */
161
161
  appVersion: string,
162
162
  /**
163
- * `manifest.json` 中应用版本名号(真机运行时,为基座的版本号)。
164
- */
165
- appVersionCode: number,
166
- /**
167
- * 应用资源(wgt)的版本名称。
168
- *
169
- * @uniPlatform {
170
- * "app": {
171
- * "android": {
172
- * "osVer": "4.4",
173
- * "uniVer": "√",
174
- * "unixVer": "x"
175
- * },
176
- * "ios": {
177
- * "osVer": "9.0",
178
- * "uniVer": "√",
179
- * "unixVer": "x"
180
- * }
181
- * }
163
+ * `manifest.json` 中应用版本名号。
164
+ */
165
+ appVersionCode: string,
166
+ /**
167
+ * 应用资源(wgt)的版本名称。
168
+ *
169
+ * @uniPlatform {
170
+ * "app": {
171
+ * "android": {
172
+ * "osVer": "4.4",
173
+ * "uniVer": "√",
174
+ * "unixVer": "x"
175
+ * },
176
+ * "ios": {
177
+ * "osVer": "9.0",
178
+ * "uniVer": "√",
179
+ * "unixVer": "x"
180
+ * }
181
+ * }
182
182
  * }
183
183
  */
184
184
  appWgtVersion: string | null,
@@ -242,21 +242,21 @@ export type GetSystemInfoResult = {
242
242
  */
243
243
  osLanguage: string,
244
244
  /**
245
- * 操作系统主题 light、dark。
246
- *
247
- * @uniPlatform {
248
- * "app": {
249
- * "android": {
250
- * "osVer": "4.4",
251
- * "uniVer": "√",
252
- * "unixVer": "x"
253
- * },
254
- * "ios": {
255
- * "osVer": "9.0",
256
- * "uniVer": "√",
257
- * "unixVer": "x"
258
- * }
259
- * }
245
+ * 操作系统主题 light、dark。
246
+ *
247
+ * @uniPlatform {
248
+ * "app": {
249
+ * "android": {
250
+ * "osVer": "4.4",
251
+ * "uniVer": "√",
252
+ * "unixVer": "x"
253
+ * },
254
+ * "ios": {
255
+ * "osVer": "9.0",
256
+ * "uniVer": "√",
257
+ * "unixVer": "x"
258
+ * }
259
+ * }
260
260
  * }
261
261
  */
262
262
  osTheme: string | null,
@@ -307,17 +307,17 @@ export type GetSystemInfoResult = {
307
307
  /**
308
308
  * uni 运行时版本
309
309
  */
310
- uniRuntimeVersion: string,
311
- /**
312
- * uni 编译器版本号
313
- */
314
- uniCompileVersionCode: number,
315
- /**
316
- * uni 运行时版本号
317
- */
318
- uniRuntimeVersionCode: number,
319
- /**
320
- * 引擎版本号
310
+ uniRuntimeVersion: string,
311
+ /**
312
+ * uni 编译器版本号
313
+ */
314
+ uniCompileVersionCode: number,
315
+ /**
316
+ * uni 运行时版本号
317
+ */
318
+ uniRuntimeVersionCode: number,
319
+ /**
320
+ * 引擎版本号。已废弃,仅为了向下兼容保留
321
321
  * @deprecated 已废弃,仅为了向下兼容保留
322
322
  */
323
323
  version: string,
@@ -346,40 +346,40 @@ export type GetSystemInfoResult = {
346
346
  */
347
347
  windowBottom: number,
348
348
  /**
349
- * oaid
350
- *
351
- * @uniPlatform {
352
- * "app": {
353
- * "android": {
354
- * "osVer": "4.4",
355
- * "uniVer": "√",
356
- * "unixVer": "√"
357
- * },
358
- * "ios": {
359
- * "osVer": "x",
360
- * "uniVer": "x",
361
- * "unixVer": "x"
362
- * }
363
- * }
349
+ * oaid
350
+ *
351
+ * @uniPlatform {
352
+ * "app": {
353
+ * "android": {
354
+ * "osVer": "4.4",
355
+ * "uniVer": "√",
356
+ * "unixVer": "√"
357
+ * },
358
+ * "ios": {
359
+ * "osVer": "x",
360
+ * "uniVer": "x",
361
+ * "unixVer": "x"
362
+ * }
363
+ * }
364
364
  * }
365
365
  */
366
366
  oaid: string | null
367
367
  /**
368
- * Android 系统API库的版本。
369
- *
370
- * @uniPlatform {
371
- * "app": {
372
- * "android": {
373
- * "osVer": "4.4",
374
- * "uniVer": "√",
375
- * "unixVer": "√"
376
- * },
377
- * "ios": {
378
- * "osVer": "x",
379
- * "uniVer": "x",
380
- * "unixVer": "x"
381
- * }
382
- * }
368
+ * Android 系统API库的版本。
369
+ *
370
+ * @uniPlatform {
371
+ * "app": {
372
+ * "android": {
373
+ * "osVer": "4.4",
374
+ * "uniVer": "√",
375
+ * "unixVer": "√"
376
+ * },
377
+ * "ios": {
378
+ * "osVer": "x",
379
+ * "uniVer": "x",
380
+ * "unixVer": "x"
381
+ * }
382
+ * }
383
383
  * }
384
384
  */
385
385
  osAndroidAPILevel: number | null
@@ -391,17 +391,17 @@ export type GetSystemInfoComplete = any;
391
391
  export type GetSystemInfoCompleteCallback = (result: GetSystemInfoComplete) => void;
392
392
  export type GetSystemInfoOptions = {
393
393
  /**
394
- * 接口调用成功的回调函数
394
+ * 接口调用成功的回调函数
395
395
  * @defaultValue null
396
396
  */
397
397
  success?: GetSystemInfoSuccessCallback | null,
398
398
  /**
399
- * 接口调用失败的回调函数
399
+ * 接口调用失败的回调函数
400
400
  * @defaultValue null
401
401
  */
402
402
  fail?: GetSystemInfoFailCallback | null,
403
403
  /**
404
- * 接口调用结束的回调函数(调用成功、失败都会执行)
404
+ * 接口调用结束的回调函数(调用成功、失败都会执行)
405
405
  * @defaultValue null
406
406
  */
407
407
  complete?: GetSystemInfoCompleteCallback | null
@@ -43,12 +43,12 @@ export interface Uni {
43
43
  * "android": {
44
44
  * "osVer": "4.4",
45
45
  * "uniVer": "√",
46
- * "unixVer": "3.9.0"
46
+ * "unixVer": "3.9+"
47
47
  * },
48
48
  * "ios": {
49
49
  * "osVer": "9.0",
50
50
  * "uniVer": "√",
51
- * "unixVer": "3.9.0"
51
+ * "unixVer": "3.9+"
52
52
  * }
53
53
  * }
54
54
  * }