@tarojs/taro 3.5.11 → 3.5.12
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": "@tarojs/taro",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.12",
|
|
4
4
|
"description": "Taro framework",
|
|
5
5
|
"homepage": "https://github.com/nervjs/taro/tree/master/packages/taro#readme",
|
|
6
6
|
"main": "index.js",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"author": "O2Team",
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@tarojs/api": "3.5.
|
|
25
|
-
"@tarojs/runtime": "3.5.
|
|
24
|
+
"@tarojs/api": "3.5.12",
|
|
25
|
+
"@tarojs/runtime": "3.5.12"
|
|
26
26
|
},
|
|
27
27
|
"peerDependenciesMeta": {
|
|
28
28
|
"@types/react": {
|
|
@@ -355,6 +355,8 @@ declare module '../../index' {
|
|
|
355
355
|
interface Result {
|
|
356
356
|
/** 应用二进制接口类型(仅 Android 支持) */
|
|
357
357
|
abi?: string
|
|
358
|
+
/** 设备二进制接口类型(仅 Android 支持) */
|
|
359
|
+
deviceAbi: string
|
|
358
360
|
/** 设备性能等级(仅Android小游戏)。取值为:-2 或 0(该设备无法运行小游戏),-1(性能未知),>=1(设备性能值,该值越高,设备性能越好,目前最高不到50) */
|
|
359
361
|
benchmarkLevel: number
|
|
360
362
|
/** 设备品牌 */
|
|
@@ -365,6 +367,8 @@ declare module '../../index' {
|
|
|
365
367
|
system: string
|
|
366
368
|
/** 客户端平台 */
|
|
367
369
|
platform: string
|
|
370
|
+
/** 设备 CPU 型号(仅 Android 支持) */
|
|
371
|
+
CPUType: string
|
|
368
372
|
}
|
|
369
373
|
}
|
|
370
374
|
|