-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
103 lines (102 loc) · 4.83 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import login from './src/interfaces/login/index.js';
import showActionSheet from './src/interfaces/showActionSheet/index.js';
import showToast from './src/interfaces/showToast/index.js';
import hideToast from './src/interfaces/hideToast/index.js';
import navigateTo from './src/interfaces/navigateTo/index.js';
import navigateBack from './src/interfaces/navigateBack/index.js';
import redirectTo from './src/interfaces/redirectTo/index.js';
import setNavigationBarTitle from './src/interfaces/setNavigationBarTitle/index.js';
import getLocation from './src/interfaces/getLocation/index.js';
import reLaunch from './src/interfaces/reLaunch/index.js';
import hideLoading from './src/interfaces/hideLoading/index.js';
import showLoading from './src/interfaces/showLoading/index.js';
import showModal from './src/interfaces/showModal/index.js';
import getSystemInfoSync from './src/interfaces/getSystemInfoSync/index.js';
import getSystemInfo from './src/interfaces/getSystemInfo/index.js';
import createAnimation from './src/interfaces/createAnimation/index.js';
import request from './src/interfaces/request/index.js';
import uploadFile from './src/interfaces/uploadFile/index.js';
import createMapContext from './src/interfaces/createMapContext/index.js';
import createCanvasContext from './src/interfaces/createCanvasContext/index.js';
import MapContext from './src/interfaces/MapContext/index.js';
import navigateToMiniProgram from './src/interfaces/navigateToMiniProgram/index.js';
import readBLECharacteristicValue from './src/interfaces/readBLECharacteristicValue/index.js';
import onBLEConnectionStateChange from './src/interfaces/onBLEConnectionStateChange/index.js';
import onBLECharacteristicValueChange from './src/interfaces/onBLECharacteristicValueChange/index.js';
import notifyBLECharacteristicValueChange from './src/interfaces/notifyBLECharacteristicValueChange/index.js';
import getBLEDeviceServices from './src/interfaces/getBLEDeviceServices/index.js';
import getBLEDeviceCharacteristics from './src/interfaces/getBLEDeviceCharacteristics/index.js';
import createBLEConnection from './src/interfaces/createBLEConnection/index.js';
import closeBLEConnection from './src/interfaces/closeBLEConnection/index.js';
import writeBLECharacteristicValue from './src/interfaces/writeBLECharacteristicValue/index.js';
import startBluetoothDevicesDiscovery from './src/interfaces/startBluetoothDevicesDiscovery/index.js';
import stopBluetoothDevicesDiscovery from './src/interfaces/stopBluetoothDevicesDiscovery/index.js';
import openBluetoothAdapter from './src/interfaces/openBluetoothAdapter/index.js';
import onBluetoothDeviceFound from './src/interfaces/onBluetoothDeviceFound/index.js';
import onBluetoothAdapterStateChange from './src/interfaces/onBluetoothAdapterStateChange/index.js';
import getConnectedBluetoothDevices from './src/interfaces/getConnectedBluetoothDevices/index.js';
import getBluetoothDevices from './src/interfaces/getBluetoothDevices/index.js';
import getBluetoothAdapterState from './src/interfaces/getBluetoothAdapterState/index.js';
import closeBluetoothAdapter from './src/interfaces/closeBluetoothAdapter/index.js';
import makePhoneCall from './src/interfaces/makePhoneCall/index.js';
import createSelectorQuery from './src/interfaces/createSelectorQuery/index.js';
import offBLECharacteristicValueChange from './src/interfaces/offBLECharacteristicValueChange/index.js';
import pay from './src/interfaces/pay/index.js';
import setStorageSync from './src/interfaces/setStorageSync/index.js';
import getStorageSync from './src/interfaces/getStorageSync/index.js';
import removeStorageSync from './src/interfaces/removeStorageSync/index.js';
import getSetting from './src/interfaces/getSetting/index.js';
import openSetting from './src/interfaces/openSetting/index.js';
import scanCode from './src/interfaces/scanCode/index.js';
export default {
login,
showActionSheet,
showToast,
hideToast,
navigateTo,
navigateBack,
redirectTo,
setNavigationBarTitle,
getLocation,
reLaunch,
hideLoading,
showLoading,
showModal,
getSystemInfoSync,
getSystemInfo,
createAnimation,
request,
uploadFile,
createMapContext,
createCanvasContext,
MapContext,
navigateToMiniProgram,
readBLECharacteristicValue,
onBLEConnectionStateChange,
onBLECharacteristicValueChange,
notifyBLECharacteristicValueChange,
getBLEDeviceServices,
getBLEDeviceCharacteristics,
createBLEConnection,
closeBLEConnection,
writeBLECharacteristicValue,
startBluetoothDevicesDiscovery,
stopBluetoothDevicesDiscovery,
openBluetoothAdapter,
onBluetoothDeviceFound,
onBluetoothAdapterStateChange,
getConnectedBluetoothDevices,
getBluetoothDevices,
getBluetoothAdapterState,
closeBluetoothAdapter,
makePhoneCall,
createSelectorQuery,
offBLECharacteristicValueChange,
pay,
setStorageSync,
getStorageSync,
removeStorageSync,
getSetting,
openSetting,
scanCode
};