-
Notifications
You must be signed in to change notification settings - Fork 391
Expand file tree
/
Copy pathindex.js
More file actions
127 lines (86 loc) · 3.05 KB
/
index.js
File metadata and controls
127 lines (86 loc) · 3.05 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// showActionSheet
export * from './api/action-sheet'
// addPhoneContact
export * from './api/add-phone-contact'
// createAnimation
export * from './api/animation'
// onAppShow, onAppHide, offAppShow, offAppHide, onError, offError
export * from './api/app'
// createInnerAudioContext
export * from './api/audio'
// base64ToArrayBuffer, arrayBufferToBase64
export * from './api/base'
// closeBLEConnection, createBLEConnection, onBLEConnectionStateChange
export * from './api/ble-connection'
// canvasToTempFilePath, canvasGetImageData
export * from './api/canvas'
// checkSession
export * from './api/check-session'
// setClipboardData, getClipboardData
export * from './api/clipboard-data'
// createIntersectionObserver
export * from './api/create-intersection-observer'
// createSelectorQuery
export * from './api/create-selector-query'
// getNetworkType, onNetworkStatusChange, offNetworkStatusChange
export * from './api/device/network'
// startWifi, stopWifi, getWifiList, onGetWifiList, offGetWifiList, getConnectedWifi
export * from './api/device/wifi'
// downloadFile, uploadFile
export * from './api/file'
// getUserInfo
export * from './api/get-user-info'
// previewImage, compressImage, getImageInfo, chooseMedia
export * from './api/image'
// login
export * from './api/login'
// makePhoneCall
export * from './api/make-phone-call'
// showModal
export * from './api/modal'
// nextTick
export * from './api/next-tick'
// pageScrollTo
export * from './api/page-scroll-to'
// stopPullDownRefresh
export * from './api/pull-down'
// request
export * from './api/request'
// requestPayment
export * from './api/request-payment'
// redirectTo, navigateTo, navigateBack, reLaunch, switchTab
export * from './api/route'
// scanCode
export * from './api/scan-code'
// setScreenBrightness, getScreenBrightness
export * from './api/screen-brightness'
// setNavigationBarTitle, setNavigationBarColor
export * from './api/set-navigation-bar'
// connectSocket
export * from './api/socket'
// setStorage, setStorageSync, getStorage, getStorageSync
// getStorageInfo, getStorageInfoSync, removeStorage, removeStorageSync
// clearStorage, clearStorageSync
export * from './api/storage'
// getSystemInfo, getSystemInfoSync
export * from './api/system'
// setTabBarItem, setTabBarStyle, showTabBar, hideTabBar
export * from './api/tab-bar'
// showToast, hideToast, showLoading, hideLoading
export * from './api/toast'
// createVideoContext
export * from './api/video'
// onWindowResize, offWindowResize
export * from './api/window'
// getLocation, openLocation, chooseLocation, onLocationChange, offLocationChange, startLocationUpdate, stopLocationUpdate
export * from './api/location'
// getExtConfig, getExtConfigSync
export * from './api/ext'
// vibrateShort, vibrateLong
export * from './api/vibrate'
// onKeyboardHeightChange, offKeyboardHeightChange, hideKeyboard
export * from './api/keyboard'
// getSetting, openSetting, enableAlertBeforeUnload, disableAlertBeforeUnload, getMenuButtonBoundingClientRect
export * from './api/setting'
// createCameraContext
export * from './api/camera'