@tarojs/taro 3.6.4 → 3.6.5-alpha
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.6.
|
|
3
|
+
"version": "3.6.5-alpha",
|
|
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.6.
|
|
25
|
-
"@tarojs/runtime": "3.6.
|
|
24
|
+
"@tarojs/api": "3.6.5-alpha",
|
|
25
|
+
"@tarojs/runtime": "3.6.5-alpha"
|
|
26
26
|
},
|
|
27
27
|
"peerDependenciesMeta": {
|
|
28
28
|
"@types/react": {
|
|
@@ -428,7 +428,7 @@ declare module '../../index' {
|
|
|
428
428
|
*/
|
|
429
429
|
offBLEConnectionStateChange(
|
|
430
430
|
/** 蓝牙低功耗连接状态的改变事件的回调函数 */
|
|
431
|
-
callback:
|
|
431
|
+
callback: onBLEConnectionStateChange.Callback,
|
|
432
432
|
): void
|
|
433
433
|
|
|
434
434
|
/** 取消监听蓝牙低功耗设备的特征值变化事件
|
|
@@ -437,7 +437,7 @@ declare module '../../index' {
|
|
|
437
437
|
*/
|
|
438
438
|
offBLECharacteristicValueChange(
|
|
439
439
|
/** 低功耗蓝牙设备的特征值变化事件的回调函数 */
|
|
440
|
-
callback:
|
|
440
|
+
callback: onBLECharacteristicValueChange.Callback,
|
|
441
441
|
): void
|
|
442
442
|
|
|
443
443
|
/** 启用低功耗蓝牙设备特征值变化时的 notify 功能,订阅特征值。注意:必须设备的特征值支持 notify 或者 indicate 才可以成功调用。
|