create-young-proj 1.2.1 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. package/CHANGELOG.md +61 -0
  2. package/README.md +6 -1
  3. package/dist/index.mjs +12 -12
  4. package/package.json +1 -1
  5. package/src/index.ts +6 -1
  6. package/template-nuxt-admin/env.d.ts +19 -1
  7. package/template-nuxt-admin/nuxt.config.ts +4 -2
  8. package/template-nuxt-admin/server/plugins/env.ts +0 -1
  9. package/template-nuxt-website/README.md +4 -0
  10. package/template-nuxt-website/composables/utils.ts +0 -4
  11. package/template-nuxt-website/env.d.ts +18 -1
  12. package/template-nuxt-website/nuxt.config.ts +3 -2
  13. package/template-nuxt-website/package.json +4 -5
  14. package/template-nuxt-website/server/api/get_footer_info.get.ts +3 -3
  15. package/template-nuxt-website/server/api/get_gray_status.get.ts +1 -0
  16. package/template-nuxt-website/server/api/get_head_nav.get.ts +1 -1
  17. package/template-nuxt-website/server/api/get_home_banner.get.ts +2 -2
  18. package/template-nuxt-website/server/routes/get/env.ts +13 -0
  19. package/template-nuxt-website/yarn.lock +1173 -1599
  20. package/template-uni-app/.vscode/vue-html.code-snippets +2 -7
  21. package/template-uni-app/README.md +2 -0
  22. package/template-uni-app/_env +1 -1
  23. package/template-uni-app/auto-imports.d.ts +718 -1
  24. package/template-uni-app/custom-plugins/multiconf.ts +13 -2
  25. package/template-uni-app/eslint.config.js +3 -1
  26. package/template-uni-app/package.json +11 -9
  27. package/template-uni-app/pnpm-lock.yaml +531 -866
  28. package/template-uni-app/src/manifest.json +1 -1
  29. package/template-uni-app/src/pages/index.vue +12 -9
  30. package/template-uni-app/src/pages/my.vue +6 -9
  31. package/template-uni-app/src/pages.json +1 -1
  32. package/template-uni-app/uni-pages.d.ts +24 -0
  33. package/template-uni-app/vite.config.ts +6 -3
  34. package/template-vitepress/.vitepress/components/HomePage.vue +54 -0
  35. package/template-vitepress/.vitepress/components/TodoItem.vue +16 -0
  36. package/template-vitepress/.vitepress/components.d.ts +13 -0
  37. package/template-vitepress/.vitepress/config.mts +159 -0
  38. package/template-vitepress/.vitepress/theme/index.ts +26 -0
  39. package/template-vitepress/.vitepress/theme/style.css +139 -0
  40. package/template-vitepress/Dockerfile +41 -0
  41. package/template-vitepress/README.md +102 -0
  42. package/template-vitepress/_gitignore +6 -0
  43. package/template-vitepress/_npmrc +2 -0
  44. package/template-vitepress/_nvmrc +1 -0
  45. package/template-vitepress/boot.mjs +17 -0
  46. package/template-vitepress/index.md +53 -0
  47. package/template-vitepress/nitro.config.ts +19 -0
  48. package/template-vitepress/package.json +26 -0
  49. package/template-vitepress/plugins/init.ts +204 -0
  50. package/template-vitepress/tsconfig.json +3 -0
  51. package/template-vitepress/vite.config.ts +66 -0
  52. package/template-uni-app/.eslintignore +0 -1
  53. package/template-uni-app/.eslintrc +0 -16
@@ -14,17 +14,35 @@ declare global {
14
14
  const YoungStorageKeys: typeof import('./src/config/enum')['YoungStorageKeys']
15
15
  const acceptHMRUpdate: typeof import('pinia')['acceptHMRUpdate']
16
16
  const apis: typeof import('./src/apis/index')['apis']
17
+ const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
17
18
  const authLocation: typeof import('./src/utils/auth')['authLocation']
19
+ const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
18
20
  const back: typeof import('./src/utils/route')['back']
19
21
  const checkFingerPrint: typeof import('./src/utils/auth')['checkFingerPrint']
20
22
  const computed: typeof import('vue')['computed']
23
+ const computedAsync: typeof import('@vueuse/core')['computedAsync']
24
+ const computedEager: typeof import('@vueuse/core')['computedEager']
25
+ const computedInject: typeof import('@vueuse/core')['computedInject']
26
+ const computedWithControl: typeof import('@vueuse/core')['computedWithControl']
27
+ const controlledComputed: typeof import('@vueuse/core')['controlledComputed']
28
+ const controlledRef: typeof import('@vueuse/core')['controlledRef']
21
29
  const createApp: typeof import('vue')['createApp']
30
+ const createEventHook: typeof import('@vueuse/core')['createEventHook']
31
+ const createGlobalState: typeof import('@vueuse/core')['createGlobalState']
32
+ const createInjectionState: typeof import('@vueuse/core')['createInjectionState']
22
33
  const createPinia: typeof import('pinia')['createPinia']
34
+ const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn']
35
+ const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable']
36
+ const createUnrefFn: typeof import('@vueuse/core')['createUnrefFn']
23
37
  const customRef: typeof import('vue')['customRef']
38
+ const debouncedRef: typeof import('@vueuse/core')['debouncedRef']
39
+ const debouncedWatch: typeof import('@vueuse/core')['debouncedWatch']
24
40
  const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
25
41
  const defineComponent: typeof import('vue')['defineComponent']
26
42
  const defineStore: typeof import('pinia')['defineStore']
43
+ const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
27
44
  const effectScope: typeof import('vue')['effectScope']
45
+ const extendRef: typeof import('@vueuse/core')['extendRef']
28
46
  const fingerPrintAuth: typeof import('./src/utils/auth')['fingerPrintAuth']
29
47
  const geocoderLocation: typeof import('./src/utils/map')['geocoderLocation']
30
48
  const getActivePinia: typeof import('pinia')['getActivePinia']
@@ -40,12 +58,15 @@ declare global {
40
58
  const getWxCode: typeof import('./src/utils/auth')['getWxCode']
41
59
  const h: typeof import('vue')['h']
42
60
  const hideLoading: typeof import('./src/utils/modal')['hideLoading']
61
+ const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
43
62
  const inject: typeof import('vue')['inject']
63
+ const isDefined: typeof import('@vueuse/core')['isDefined']
44
64
  const isProxy: typeof import('vue')['isProxy']
45
65
  const isReactive: typeof import('vue')['isReactive']
46
66
  const isReadonly: typeof import('vue')['isReadonly']
47
67
  const isRef: typeof import('vue')['isRef']
48
68
  const locate: typeof import('./src/utils/auth')['locate']
69
+ const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable']
49
70
  const mapActions: typeof import('pinia')['mapActions']
50
71
  const mapGetters: typeof import('pinia')['mapGetters']
51
72
  const mapState: typeof import('pinia')['mapState']
@@ -59,12 +80,15 @@ declare global {
59
80
  const onBeforeMount: typeof import('vue')['onBeforeMount']
60
81
  const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
61
82
  const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
83
+ const onClickOutside: typeof import('@vueuse/core')['onClickOutside']
62
84
  const onDeactivated: typeof import('vue')['onDeactivated']
63
85
  const onError: typeof import('@dcloudio/uni-app')['onError']
64
86
  const onErrorCaptured: typeof import('vue')['onErrorCaptured']
65
87
  const onHide: typeof import('@dcloudio/uni-app')['onHide']
88
+ const onKeyStroke: typeof import('@vueuse/core')['onKeyStroke']
66
89
  const onLaunch: typeof import('@dcloudio/uni-app')['onLaunch']
67
90
  const onLoad: typeof import('@dcloudio/uni-app')['onLoad']
91
+ const onLongPress: typeof import('@vueuse/core')['onLongPress']
68
92
  const onMounted: typeof import('vue')['onMounted']
69
93
  const onNavigationBarButtonTap: typeof import('@dcloudio/uni-app')['onNavigationBarButtonTap']
70
94
  const onNavigationBarSearchInputChanged: typeof import('@dcloudio/uni-app')['onNavigationBarSearchInputChanged']
@@ -84,20 +108,34 @@ declare global {
84
108
  const onShareAppMessage: typeof import('@dcloudio/uni-app')['onShareAppMessage']
85
109
  const onShareTimeline: typeof import('@dcloudio/uni-app')['onShareTimeline']
86
110
  const onShow: typeof import('@dcloudio/uni-app')['onShow']
111
+ const onStartTyping: typeof import('@vueuse/core')['onStartTyping']
87
112
  const onTabItemTap: typeof import('@dcloudio/uni-app')['onTabItemTap']
88
113
  const onThemeChange: typeof import('@dcloudio/uni-app')['onThemeChange']
89
114
  const onUnhandledRejection: typeof import('@dcloudio/uni-app')['onUnhandledRejection']
90
115
  const onUnload: typeof import('@dcloudio/uni-app')['onUnload']
91
116
  const onUnmounted: typeof import('vue')['onUnmounted']
92
117
  const onUpdated: typeof import('vue')['onUpdated']
118
+ const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
93
119
  const provide: typeof import('vue')['provide']
120
+ const reactify: typeof import('@vueuse/core')['reactify']
121
+ const reactifyObject: typeof import('@vueuse/core')['reactifyObject']
94
122
  const reactive: typeof import('vue')['reactive']
123
+ const reactiveComputed: typeof import('@vueuse/core')['reactiveComputed']
124
+ const reactiveOmit: typeof import('@vueuse/core')['reactiveOmit']
125
+ const reactivePick: typeof import('@vueuse/core')['reactivePick']
95
126
  const readonly: typeof import('vue')['readonly']
96
127
  const redirect: typeof import('./src/utils/route')['redirect']
97
128
  const ref: typeof import('vue')['ref']
129
+ const refAutoReset: typeof import('@vueuse/core')['refAutoReset']
130
+ const refDebounced: typeof import('@vueuse/core')['refDebounced']
131
+ const refDefault: typeof import('@vueuse/core')['refDefault']
132
+ const refThrottled: typeof import('@vueuse/core')['refThrottled']
133
+ const refWithControl: typeof import('@vueuse/core')['refWithControl']
98
134
  const relaunch: typeof import('./src/utils/route')['relaunch']
99
135
  const removeLocationInfo: typeof import('./src/store/local/index')['removeLocationInfo']
100
136
  const resolveComponent: typeof import('vue')['resolveComponent']
137
+ const resolveRef: typeof import('@vueuse/core')['resolveRef']
138
+ const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
101
139
  const route: typeof import('./src/utils/route')['route']
102
140
  const searchLoaction: typeof import('./src/utils/map')['searchLoaction']
103
141
  const setActivePinia: typeof import('pinia')['setActivePinia']
@@ -115,31 +153,232 @@ declare global {
115
153
  const showToast: typeof import('./src/utils/modal')['showToast']
116
154
  const storeToRefs: typeof import('pinia')['storeToRefs']
117
155
  const subscribeMessage: typeof import('./src/utils/system')['subscribeMessage']
156
+ const syncRef: typeof import('@vueuse/core')['syncRef']
157
+ const syncRefs: typeof import('@vueuse/core')['syncRefs']
118
158
  const tabbar: typeof import('./src/utils/route')['tabbar']
159
+ const templateRef: typeof import('@vueuse/core')['templateRef']
160
+ const throttledRef: typeof import('@vueuse/core')['throttledRef']
161
+ const throttledWatch: typeof import('@vueuse/core')['throttledWatch']
119
162
  const to: typeof import('./src/utils/route')['to']
120
163
  const toRaw: typeof import('vue')['toRaw']
164
+ const toReactive: typeof import('@vueuse/core')['toReactive']
121
165
  const toRef: typeof import('vue')['toRef']
122
166
  const toRefs: typeof import('vue')['toRefs']
123
167
  const toValue: typeof import('vue')['toValue']
124
168
  const triggerRef: typeof import('vue')['triggerRef']
169
+ const tryOnBeforeMount: typeof import('@vueuse/core')['tryOnBeforeMount']
170
+ const tryOnBeforeUnmount: typeof import('@vueuse/core')['tryOnBeforeUnmount']
171
+ const tryOnHide: typeof import('@uni-helper/uni-use')['tryOnHide']
172
+ const tryOnInit: typeof import('@uni-helper/uni-use')['tryOnInit']
173
+ const tryOnLoad: typeof import('@uni-helper/uni-use')['tryOnLoad']
174
+ const tryOnMounted: typeof import('@vueuse/core')['tryOnMounted']
175
+ const tryOnReady: typeof import('@uni-helper/uni-use')['tryOnReady']
176
+ const tryOnScopeDispose: typeof import('@vueuse/core')['tryOnScopeDispose']
177
+ const tryOnShow: typeof import('@uni-helper/uni-use')['tryOnShow']
178
+ const tryOnUnload: typeof import('@uni-helper/uni-use')['tryOnUnload']
179
+ const tryOnUnmounted: typeof import('@vueuse/core')['tryOnUnmounted']
125
180
  const unref: typeof import('vue')['unref']
181
+ const unrefElement: typeof import('@vueuse/core')['unrefElement']
182
+ const until: typeof import('@vueuse/core')['until']
183
+ const useActionSheet: typeof import('@uni-helper/uni-use')['useActionSheet']
184
+ const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
185
+ const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery']
186
+ const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter']
187
+ const useArrayFind: typeof import('@vueuse/core')['useArrayFind']
188
+ const useArrayFindIndex: typeof import('@vueuse/core')['useArrayFindIndex']
189
+ const useArrayFindLast: typeof import('@vueuse/core')['useArrayFindLast']
190
+ const useArrayJoin: typeof import('@vueuse/core')['useArrayJoin']
191
+ const useArrayMap: typeof import('@vueuse/core')['useArrayMap']
192
+ const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
193
+ const useArraySome: typeof import('@vueuse/core')['useArraySome']
194
+ const useArrayUnique: typeof import('@vueuse/core')['useArrayUnique']
195
+ const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue']
196
+ const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
126
197
  const useAttrs: typeof import('vue')['useAttrs']
198
+ const useBase64: typeof import('@vueuse/core')['useBase64']
199
+ const useBattery: typeof import('@vueuse/core')['useBattery']
200
+ const useBluetooth: typeof import('@vueuse/core')['useBluetooth']
201
+ const useBreakpoints: typeof import('@vueuse/core')['useBreakpoints']
202
+ const useBroadcastChannel: typeof import('@vueuse/core')['useBroadcastChannel']
203
+ const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']
204
+ const useCached: typeof import('@vueuse/core')['useCached']
205
+ const useClipboard: typeof import('@vueuse/core')['useClipboard']
206
+ const useClipboardData: typeof import('@uni-helper/uni-use')['useClipboardData']
207
+ const useCloned: typeof import('@vueuse/core')['useCloned']
208
+ const useColorMode: typeof import('@vueuse/core')['useColorMode']
209
+ const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog']
210
+ const useCounter: typeof import('@vueuse/core')['useCounter']
127
211
  const useCssModule: typeof import('vue')['useCssModule']
212
+ const useCssVar: typeof import('@vueuse/core')['useCssVar']
128
213
  const useCssVars: typeof import('vue')['useCssVars']
214
+ const useCurrentElement: typeof import('@vueuse/core')['useCurrentElement']
215
+ const useCycleList: typeof import('@vueuse/core')['useCycleList']
216
+ const useDark: typeof import('@vueuse/core')['useDark']
217
+ const useDateFormat: typeof import('@vueuse/core')['useDateFormat']
218
+ const useDebounce: typeof import('@vueuse/core')['useDebounce']
219
+ const useDebounceFn: typeof import('@vueuse/core')['useDebounceFn']
220
+ const useDebouncedRefHistory: typeof import('@vueuse/core')['useDebouncedRefHistory']
221
+ const useDeviceMotion: typeof import('@vueuse/core')['useDeviceMotion']
222
+ const useDeviceOrientation: typeof import('@vueuse/core')['useDeviceOrientation']
223
+ const useDevicePixelRatio: typeof import('@vueuse/core')['useDevicePixelRatio']
224
+ const useDevicesList: typeof import('@vueuse/core')['useDevicesList']
225
+ const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
226
+ const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
227
+ const useDownloadFile: typeof import('@uni-helper/uni-use')['useDownloadFile']
228
+ const useDraggable: typeof import('@vueuse/core')['useDraggable']
229
+ const useDropZone: typeof import('@vueuse/core')['useDropZone']
230
+ const useElementBounding: typeof import('@vueuse/core')['useElementBounding']
231
+ const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
232
+ const useElementHover: typeof import('@vueuse/core')['useElementHover']
233
+ const useElementSize: typeof import('@vueuse/core')['useElementSize']
234
+ const useElementVisibility: typeof import('@vueuse/core')['useElementVisibility']
235
+ const useEventBus: typeof import('@vueuse/core')['useEventBus']
236
+ const useEventListener: typeof import('@vueuse/core')['useEventListener']
237
+ const useEventSource: typeof import('@vueuse/core')['useEventSource']
238
+ const useEyeDropper: typeof import('@vueuse/core')['useEyeDropper']
239
+ const useFavicon: typeof import('@vueuse/core')['useFavicon']
240
+ const useFetch: typeof import('@vueuse/core')['useFetch']
241
+ const useFileDialog: typeof import('@vueuse/core')['useFileDialog']
242
+ const useFileSystemAccess: typeof import('@vueuse/core')['useFileSystemAccess']
243
+ const useFocus: typeof import('@vueuse/core')['useFocus']
244
+ const useFocusWithin: typeof import('@vueuse/core')['useFocusWithin']
245
+ const useFps: typeof import('@vueuse/core')['useFps']
246
+ const useFullscreen: typeof import('@vueuse/core')['useFullscreen']
247
+ const useGamepad: typeof import('@vueuse/core')['useGamepad']
248
+ const useGeolocation: typeof import('@vueuse/core')['useGeolocation']
129
249
  const useGet: typeof import('./src/apis/requests/get')['useGet']
250
+ const useGlobalData: typeof import('@uni-helper/uni-use')['useGlobalData']
130
251
  const useHttpLoading: typeof import('./src/store/system')['useHttpLoading']
252
+ const useIdle: typeof import('@vueuse/core')['useIdle']
253
+ const useImage: typeof import('@vueuse/core')['useImage']
254
+ const useInfiniteScroll: typeof import('@vueuse/core')['useInfiniteScroll']
255
+ const useInterceptor: typeof import('@uni-helper/uni-use')['useInterceptor']
256
+ const useIntersectionObserver: typeof import('@vueuse/core')['useIntersectionObserver']
257
+ const useInterval: typeof import('@vueuse/core')['useInterval']
258
+ const useIntervalFn: typeof import('@vueuse/core')['useIntervalFn']
259
+ const useKeyModifier: typeof import('@vueuse/core')['useKeyModifier']
260
+ const useLastChanged: typeof import('@vueuse/core')['useLastChanged']
261
+ const useLoading: typeof import('@uni-helper/uni-use')['useLoading']
262
+ const useLocalStorage: typeof import('@vueuse/core')['useLocalStorage']
263
+ const useMagicKeys: typeof import('@vueuse/core')['useMagicKeys']
264
+ const useManualRefHistory: typeof import('@vueuse/core')['useManualRefHistory']
265
+ const useMediaControls: typeof import('@vueuse/core')['useMediaControls']
266
+ const useMediaQuery: typeof import('@vueuse/core')['useMediaQuery']
267
+ const useMemoize: typeof import('@vueuse/core')['useMemoize']
268
+ const useMemory: typeof import('@vueuse/core')['useMemory']
269
+ const useModal: typeof import('@uni-helper/uni-use')['useModal']
270
+ const useMounted: typeof import('@vueuse/core')['useMounted']
271
+ const useMouse: typeof import('@vueuse/core')['useMouse']
272
+ const useMouseInElement: typeof import('@vueuse/core')['useMouseInElement']
273
+ const useMousePressed: typeof import('@vueuse/core')['useMousePressed']
274
+ const useMutationObserver: typeof import('@vueuse/core')['useMutationObserver']
275
+ const useNavigatorLanguage: typeof import('@vueuse/core')['useNavigatorLanguage']
276
+ const useNetwork: typeof import('@uni-helper/uni-use')['useNetwork']
277
+ const useNow: typeof import('@vueuse/core')['useNow']
278
+ const useObjectUrl: typeof import('@vueuse/core')['useObjectUrl']
279
+ const useOffsetPagination: typeof import('@vueuse/core')['useOffsetPagination']
280
+ const useOnline: typeof import('@uni-helper/uni-use')['useOnline']
281
+ const usePage: typeof import('@uni-helper/uni-use')['usePage']
282
+ const usePageLeave: typeof import('@vueuse/core')['usePageLeave']
283
+ const usePageScroll: typeof import('@uni-helper/uni-use')['usePageScroll']
284
+ const usePages: typeof import('@uni-helper/uni-use')['usePages']
285
+ const useParallax: typeof import('@vueuse/core')['useParallax']
286
+ const usePermission: typeof import('@vueuse/core')['usePermission']
287
+ const usePointer: typeof import('@vueuse/core')['usePointer']
288
+ const usePointerLock: typeof import('@vueuse/core')['usePointerLock']
289
+ const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe']
131
290
  const usePost: typeof import('./src/apis/requests/post')['usePost']
291
+ const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme']
292
+ const usePreferredContrast: typeof import('@vueuse/core')['usePreferredContrast']
293
+ const usePreferredDark: typeof import('@uni-helper/uni-use')['usePreferredDark']
294
+ const usePreferredLanguage: typeof import('@uni-helper/uni-use')['usePreferredLanguage']
295
+ const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages']
296
+ const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion']
297
+ const usePrevPage: typeof import('@uni-helper/uni-use')['usePrevPage']
298
+ const usePrevRoute: typeof import('@uni-helper/uni-use')['usePrevRoute']
299
+ const usePrevious: typeof import('@vueuse/core')['usePrevious']
300
+ const useProvider: typeof import('@uni-helper/uni-use')['useProvider']
301
+ const useRafFn: typeof import('@vueuse/core')['useRafFn']
302
+ const useRefHistory: typeof import('@vueuse/core')['useRefHistory']
303
+ const useRequest: typeof import('@uni-helper/uni-use')['useRequest']
304
+ const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver']
305
+ const useRoute: typeof import('@uni-helper/uni-use')['useRoute']
306
+ const useRouter: typeof import('@uni-helper/uni-use')['useRouter']
307
+ const useScanCode: typeof import('@uni-helper/uni-use')['useScanCode']
308
+ const useScreenBrightness: typeof import('@uni-helper/uni-use')['useScreenBrightness']
309
+ const useScreenOrientation: typeof import('@vueuse/core')['useScreenOrientation']
310
+ const useScreenSafeArea: typeof import('@vueuse/core')['useScreenSafeArea']
311
+ const useScriptTag: typeof import('@vueuse/core')['useScriptTag']
312
+ const useScroll: typeof import('@vueuse/core')['useScroll']
313
+ const useScrollLock: typeof import('@vueuse/core')['useScrollLock']
314
+ const useSelectorQuery: typeof import('@uni-helper/uni-use')['useSelectorQuery']
315
+ const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage']
316
+ const useShare: typeof import('@vueuse/core')['useShare']
132
317
  const useSlots: typeof import('vue')['useSlots']
318
+ const useSocket: typeof import('@uni-helper/uni-use')['useSocket']
319
+ const useSorted: typeof import('@vueuse/core')['useSorted']
320
+ const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition']
321
+ const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis']
322
+ const useStepper: typeof import('@vueuse/core')['useStepper']
323
+ const useStorage: typeof import('@vueuse/core')['useStorage']
324
+ const useStorageAsync: typeof import('@uni-helper/uni-use')['useStorageAsync']
325
+ const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
326
+ const useSupported: typeof import('@vueuse/core')['useSupported']
327
+ const useSwipe: typeof import('@vueuse/core')['useSwipe']
133
328
  const useSystemInfo: typeof import('./src/store/system')['useSystemInfo']
329
+ const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
330
+ const useTextDirection: typeof import('@vueuse/core')['useTextDirection']
331
+ const useTextSelection: typeof import('@vueuse/core')['useTextSelection']
332
+ const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize']
333
+ const useThrottle: typeof import('@vueuse/core')['useThrottle']
334
+ const useThrottleFn: typeof import('@vueuse/core')['useThrottleFn']
335
+ const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory']
336
+ const useTimeAgo: typeof import('@vueuse/core')['useTimeAgo']
337
+ const useTimeout: typeof import('@vueuse/core')['useTimeout']
338
+ const useTimeoutFn: typeof import('@vueuse/core')['useTimeoutFn']
339
+ const useTimeoutPoll: typeof import('@vueuse/core')['useTimeoutPoll']
340
+ const useTimestamp: typeof import('@vueuse/core')['useTimestamp']
341
+ const useTitle: typeof import('@vueuse/core')['useTitle']
342
+ const useToNumber: typeof import('@vueuse/core')['useToNumber']
343
+ const useToString: typeof import('@vueuse/core')['useToString']
344
+ const useToast: typeof import('@uni-helper/uni-use')['useToast']
345
+ const useToggle: typeof import('@vueuse/core')['useToggle']
346
+ const useTransition: typeof import('@vueuse/core')['useTransition']
347
+ const useUploadFile: typeof import('@uni-helper/uni-use')['useUploadFile']
348
+ const useUrlSearchParams: typeof import('@vueuse/core')['useUrlSearchParams']
349
+ const useUserMedia: typeof import('@vueuse/core')['useUserMedia']
350
+ const useVModel: typeof import('@vueuse/core')['useVModel']
351
+ const useVModels: typeof import('@vueuse/core')['useVModels']
352
+ const useVibrate: typeof import('@vueuse/core')['useVibrate']
353
+ const useVirtualList: typeof import('@vueuse/core')['useVirtualList']
354
+ const useVisible: typeof import('@uni-helper/uni-use')['useVisible']
355
+ const useWakeLock: typeof import('@vueuse/core')['useWakeLock']
356
+ const useWebNotification: typeof import('@vueuse/core')['useWebNotification']
357
+ const useWebSocket: typeof import('@vueuse/core')['useWebSocket']
358
+ const useWebWorker: typeof import('@vueuse/core')['useWebWorker']
359
+ const useWebWorkerFn: typeof import('@vueuse/core')['useWebWorkerFn']
360
+ const useWindowFocus: typeof import('@vueuse/core')['useWindowFocus']
361
+ const useWindowScroll: typeof import('@vueuse/core')['useWindowScroll']
362
+ const useWindowSize: typeof import('@vueuse/core')['useWindowSize']
134
363
  const watch: typeof import('vue')['watch']
364
+ const watchArray: typeof import('@vueuse/core')['watchArray']
365
+ const watchAtMost: typeof import('@vueuse/core')['watchAtMost']
366
+ const watchDebounced: typeof import('@vueuse/core')['watchDebounced']
135
367
  const watchEffect: typeof import('vue')['watchEffect']
368
+ const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
369
+ const watchOnce: typeof import('@vueuse/core')['watchOnce']
370
+ const watchPausable: typeof import('@vueuse/core')['watchPausable']
136
371
  const watchPostEffect: typeof import('vue')['watchPostEffect']
137
372
  const watchSyncEffect: typeof import('vue')['watchSyncEffect']
373
+ const watchThrottled: typeof import('@vueuse/core')['watchThrottled']
374
+ const watchTriggerable: typeof import('@vueuse/core')['watchTriggerable']
375
+ const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
376
+ const whenever: typeof import('@vueuse/core')['whenever']
138
377
  }
139
378
  // for type re-export
140
379
  declare global {
141
380
  // @ts-ignore
142
- export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
381
+ export type { Component, ComponentPublicInstance, ComputedRef, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue'
143
382
  }
144
383
  // for vue template auto import
145
384
  import { UnwrapRef } from 'vue'
@@ -154,17 +393,35 @@ declare module 'vue' {
154
393
  readonly YoungStorageKeys: UnwrapRef<typeof import('./src/config/enum')['YoungStorageKeys']>
155
394
  readonly acceptHMRUpdate: UnwrapRef<typeof import('pinia')['acceptHMRUpdate']>
156
395
  readonly apis: UnwrapRef<typeof import('./src/apis/index')['apis']>
396
+ readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
157
397
  readonly authLocation: UnwrapRef<typeof import('./src/utils/auth')['authLocation']>
398
+ readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
158
399
  readonly back: UnwrapRef<typeof import('./src/utils/route')['back']>
159
400
  readonly checkFingerPrint: UnwrapRef<typeof import('./src/utils/auth')['checkFingerPrint']>
160
401
  readonly computed: UnwrapRef<typeof import('vue')['computed']>
402
+ readonly computedAsync: UnwrapRef<typeof import('@vueuse/core')['computedAsync']>
403
+ readonly computedEager: UnwrapRef<typeof import('@vueuse/core')['computedEager']>
404
+ readonly computedInject: UnwrapRef<typeof import('@vueuse/core')['computedInject']>
405
+ readonly computedWithControl: UnwrapRef<typeof import('@vueuse/core')['computedWithControl']>
406
+ readonly controlledComputed: UnwrapRef<typeof import('@vueuse/core')['controlledComputed']>
407
+ readonly controlledRef: UnwrapRef<typeof import('@vueuse/core')['controlledRef']>
161
408
  readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
409
+ readonly createEventHook: UnwrapRef<typeof import('@vueuse/core')['createEventHook']>
410
+ readonly createGlobalState: UnwrapRef<typeof import('@vueuse/core')['createGlobalState']>
411
+ readonly createInjectionState: UnwrapRef<typeof import('@vueuse/core')['createInjectionState']>
162
412
  readonly createPinia: UnwrapRef<typeof import('pinia')['createPinia']>
413
+ readonly createReactiveFn: UnwrapRef<typeof import('@vueuse/core')['createReactiveFn']>
414
+ readonly createSharedComposable: UnwrapRef<typeof import('@vueuse/core')['createSharedComposable']>
415
+ readonly createUnrefFn: UnwrapRef<typeof import('@vueuse/core')['createUnrefFn']>
163
416
  readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
417
+ readonly debouncedRef: UnwrapRef<typeof import('@vueuse/core')['debouncedRef']>
418
+ readonly debouncedWatch: UnwrapRef<typeof import('@vueuse/core')['debouncedWatch']>
164
419
  readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
165
420
  readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
166
421
  readonly defineStore: UnwrapRef<typeof import('pinia')['defineStore']>
422
+ readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
167
423
  readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
424
+ readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
168
425
  readonly fingerPrintAuth: UnwrapRef<typeof import('./src/utils/auth')['fingerPrintAuth']>
169
426
  readonly geocoderLocation: UnwrapRef<typeof import('./src/utils/map')['geocoderLocation']>
170
427
  readonly getActivePinia: UnwrapRef<typeof import('pinia')['getActivePinia']>
@@ -180,12 +437,15 @@ declare module 'vue' {
180
437
  readonly getWxCode: UnwrapRef<typeof import('./src/utils/auth')['getWxCode']>
181
438
  readonly h: UnwrapRef<typeof import('vue')['h']>
182
439
  readonly hideLoading: UnwrapRef<typeof import('./src/utils/modal')['hideLoading']>
440
+ readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
183
441
  readonly inject: UnwrapRef<typeof import('vue')['inject']>
442
+ readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
184
443
  readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
185
444
  readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
186
445
  readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
187
446
  readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
188
447
  readonly locate: UnwrapRef<typeof import('./src/utils/auth')['locate']>
448
+ readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
189
449
  readonly mapActions: UnwrapRef<typeof import('pinia')['mapActions']>
190
450
  readonly mapGetters: UnwrapRef<typeof import('pinia')['mapGetters']>
191
451
  readonly mapState: UnwrapRef<typeof import('pinia')['mapState']>
@@ -199,12 +459,15 @@ declare module 'vue' {
199
459
  readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
200
460
  readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
201
461
  readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
462
+ readonly onClickOutside: UnwrapRef<typeof import('@vueuse/core')['onClickOutside']>
202
463
  readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
203
464
  readonly onError: UnwrapRef<typeof import('@dcloudio/uni-app')['onError']>
204
465
  readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
205
466
  readonly onHide: UnwrapRef<typeof import('@dcloudio/uni-app')['onHide']>
467
+ readonly onKeyStroke: UnwrapRef<typeof import('@vueuse/core')['onKeyStroke']>
206
468
  readonly onLaunch: UnwrapRef<typeof import('@dcloudio/uni-app')['onLaunch']>
207
469
  readonly onLoad: UnwrapRef<typeof import('@dcloudio/uni-app')['onLoad']>
470
+ readonly onLongPress: UnwrapRef<typeof import('@vueuse/core')['onLongPress']>
208
471
  readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
209
472
  readonly onNavigationBarButtonTap: UnwrapRef<typeof import('@dcloudio/uni-app')['onNavigationBarButtonTap']>
210
473
  readonly onNavigationBarSearchInputChanged: UnwrapRef<typeof import('@dcloudio/uni-app')['onNavigationBarSearchInputChanged']>
@@ -224,20 +487,34 @@ declare module 'vue' {
224
487
  readonly onShareAppMessage: UnwrapRef<typeof import('@dcloudio/uni-app')['onShareAppMessage']>
225
488
  readonly onShareTimeline: UnwrapRef<typeof import('@dcloudio/uni-app')['onShareTimeline']>
226
489
  readonly onShow: UnwrapRef<typeof import('@dcloudio/uni-app')['onShow']>
490
+ readonly onStartTyping: UnwrapRef<typeof import('@vueuse/core')['onStartTyping']>
227
491
  readonly onTabItemTap: UnwrapRef<typeof import('@dcloudio/uni-app')['onTabItemTap']>
228
492
  readonly onThemeChange: UnwrapRef<typeof import('@dcloudio/uni-app')['onThemeChange']>
229
493
  readonly onUnhandledRejection: UnwrapRef<typeof import('@dcloudio/uni-app')['onUnhandledRejection']>
230
494
  readonly onUnload: UnwrapRef<typeof import('@dcloudio/uni-app')['onUnload']>
231
495
  readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
232
496
  readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
497
+ readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
233
498
  readonly provide: UnwrapRef<typeof import('vue')['provide']>
499
+ readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
500
+ readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
234
501
  readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
502
+ readonly reactiveComputed: UnwrapRef<typeof import('@vueuse/core')['reactiveComputed']>
503
+ readonly reactiveOmit: UnwrapRef<typeof import('@vueuse/core')['reactiveOmit']>
504
+ readonly reactivePick: UnwrapRef<typeof import('@vueuse/core')['reactivePick']>
235
505
  readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
236
506
  readonly redirect: UnwrapRef<typeof import('./src/utils/route')['redirect']>
237
507
  readonly ref: UnwrapRef<typeof import('vue')['ref']>
508
+ readonly refAutoReset: UnwrapRef<typeof import('@vueuse/core')['refAutoReset']>
509
+ readonly refDebounced: UnwrapRef<typeof import('@vueuse/core')['refDebounced']>
510
+ readonly refDefault: UnwrapRef<typeof import('@vueuse/core')['refDefault']>
511
+ readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
512
+ readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
238
513
  readonly relaunch: UnwrapRef<typeof import('./src/utils/route')['relaunch']>
239
514
  readonly removeLocationInfo: UnwrapRef<typeof import('./src/store/local/index')['removeLocationInfo']>
240
515
  readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
516
+ readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
517
+ readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
241
518
  readonly route: UnwrapRef<typeof import('./src/utils/route')['route']>
242
519
  readonly searchLoaction: UnwrapRef<typeof import('./src/utils/map')['searchLoaction']>
243
520
  readonly setActivePinia: UnwrapRef<typeof import('pinia')['setActivePinia']>
@@ -255,26 +532,227 @@ declare module 'vue' {
255
532
  readonly showToast: UnwrapRef<typeof import('./src/utils/modal')['showToast']>
256
533
  readonly storeToRefs: UnwrapRef<typeof import('pinia')['storeToRefs']>
257
534
  readonly subscribeMessage: UnwrapRef<typeof import('./src/utils/system')['subscribeMessage']>
535
+ readonly syncRef: UnwrapRef<typeof import('@vueuse/core')['syncRef']>
536
+ readonly syncRefs: UnwrapRef<typeof import('@vueuse/core')['syncRefs']>
258
537
  readonly tabbar: UnwrapRef<typeof import('./src/utils/route')['tabbar']>
538
+ readonly templateRef: UnwrapRef<typeof import('@vueuse/core')['templateRef']>
539
+ readonly throttledRef: UnwrapRef<typeof import('@vueuse/core')['throttledRef']>
540
+ readonly throttledWatch: UnwrapRef<typeof import('@vueuse/core')['throttledWatch']>
259
541
  readonly to: UnwrapRef<typeof import('./src/utils/route')['to']>
260
542
  readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
543
+ readonly toReactive: UnwrapRef<typeof import('@vueuse/core')['toReactive']>
261
544
  readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
262
545
  readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
263
546
  readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
264
547
  readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
548
+ readonly tryOnBeforeMount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeMount']>
549
+ readonly tryOnBeforeUnmount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeUnmount']>
550
+ readonly tryOnHide: UnwrapRef<typeof import('@uni-helper/uni-use')['tryOnHide']>
551
+ readonly tryOnInit: UnwrapRef<typeof import('@uni-helper/uni-use')['tryOnInit']>
552
+ readonly tryOnLoad: UnwrapRef<typeof import('@uni-helper/uni-use')['tryOnLoad']>
553
+ readonly tryOnMounted: UnwrapRef<typeof import('@vueuse/core')['tryOnMounted']>
554
+ readonly tryOnReady: UnwrapRef<typeof import('@uni-helper/uni-use')['tryOnReady']>
555
+ readonly tryOnScopeDispose: UnwrapRef<typeof import('@vueuse/core')['tryOnScopeDispose']>
556
+ readonly tryOnShow: UnwrapRef<typeof import('@uni-helper/uni-use')['tryOnShow']>
557
+ readonly tryOnUnload: UnwrapRef<typeof import('@uni-helper/uni-use')['tryOnUnload']>
558
+ readonly tryOnUnmounted: UnwrapRef<typeof import('@vueuse/core')['tryOnUnmounted']>
265
559
  readonly unref: UnwrapRef<typeof import('vue')['unref']>
560
+ readonly unrefElement: UnwrapRef<typeof import('@vueuse/core')['unrefElement']>
561
+ readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
562
+ readonly useActionSheet: UnwrapRef<typeof import('@uni-helper/uni-use')['useActionSheet']>
563
+ readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
564
+ readonly useArrayEvery: UnwrapRef<typeof import('@vueuse/core')['useArrayEvery']>
565
+ readonly useArrayFilter: UnwrapRef<typeof import('@vueuse/core')['useArrayFilter']>
566
+ readonly useArrayFind: UnwrapRef<typeof import('@vueuse/core')['useArrayFind']>
567
+ readonly useArrayFindIndex: UnwrapRef<typeof import('@vueuse/core')['useArrayFindIndex']>
568
+ readonly useArrayFindLast: UnwrapRef<typeof import('@vueuse/core')['useArrayFindLast']>
569
+ readonly useArrayJoin: UnwrapRef<typeof import('@vueuse/core')['useArrayJoin']>
570
+ readonly useArrayMap: UnwrapRef<typeof import('@vueuse/core')['useArrayMap']>
571
+ readonly useArrayReduce: UnwrapRef<typeof import('@vueuse/core')['useArrayReduce']>
572
+ readonly useArraySome: UnwrapRef<typeof import('@vueuse/core')['useArraySome']>
573
+ readonly useArrayUnique: UnwrapRef<typeof import('@vueuse/core')['useArrayUnique']>
574
+ readonly useAsyncQueue: UnwrapRef<typeof import('@vueuse/core')['useAsyncQueue']>
575
+ readonly useAsyncState: UnwrapRef<typeof import('@vueuse/core')['useAsyncState']>
266
576
  readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
577
+ readonly useBase64: UnwrapRef<typeof import('@vueuse/core')['useBase64']>
578
+ readonly useBattery: UnwrapRef<typeof import('@vueuse/core')['useBattery']>
579
+ readonly useBluetooth: UnwrapRef<typeof import('@vueuse/core')['useBluetooth']>
580
+ readonly useBreakpoints: UnwrapRef<typeof import('@vueuse/core')['useBreakpoints']>
581
+ readonly useBroadcastChannel: UnwrapRef<typeof import('@vueuse/core')['useBroadcastChannel']>
582
+ readonly useBrowserLocation: UnwrapRef<typeof import('@vueuse/core')['useBrowserLocation']>
583
+ readonly useCached: UnwrapRef<typeof import('@vueuse/core')['useCached']>
584
+ readonly useClipboard: UnwrapRef<typeof import('@vueuse/core')['useClipboard']>
585
+ readonly useClipboardData: UnwrapRef<typeof import('@uni-helper/uni-use')['useClipboardData']>
586
+ readonly useCloned: UnwrapRef<typeof import('@vueuse/core')['useCloned']>
587
+ readonly useColorMode: UnwrapRef<typeof import('@vueuse/core')['useColorMode']>
588
+ readonly useConfirmDialog: UnwrapRef<typeof import('@vueuse/core')['useConfirmDialog']>
589
+ readonly useCounter: UnwrapRef<typeof import('@vueuse/core')['useCounter']>
267
590
  readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
591
+ readonly useCssVar: UnwrapRef<typeof import('@vueuse/core')['useCssVar']>
268
592
  readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
593
+ readonly useCurrentElement: UnwrapRef<typeof import('@vueuse/core')['useCurrentElement']>
594
+ readonly useCycleList: UnwrapRef<typeof import('@vueuse/core')['useCycleList']>
595
+ readonly useDark: UnwrapRef<typeof import('@vueuse/core')['useDark']>
596
+ readonly useDateFormat: UnwrapRef<typeof import('@vueuse/core')['useDateFormat']>
597
+ readonly useDebounce: UnwrapRef<typeof import('@vueuse/core')['useDebounce']>
598
+ readonly useDebounceFn: UnwrapRef<typeof import('@vueuse/core')['useDebounceFn']>
599
+ readonly useDebouncedRefHistory: UnwrapRef<typeof import('@vueuse/core')['useDebouncedRefHistory']>
600
+ readonly useDeviceMotion: UnwrapRef<typeof import('@vueuse/core')['useDeviceMotion']>
601
+ readonly useDeviceOrientation: UnwrapRef<typeof import('@vueuse/core')['useDeviceOrientation']>
602
+ readonly useDevicePixelRatio: UnwrapRef<typeof import('@vueuse/core')['useDevicePixelRatio']>
603
+ readonly useDevicesList: UnwrapRef<typeof import('@vueuse/core')['useDevicesList']>
604
+ readonly useDisplayMedia: UnwrapRef<typeof import('@vueuse/core')['useDisplayMedia']>
605
+ readonly useDocumentVisibility: UnwrapRef<typeof import('@vueuse/core')['useDocumentVisibility']>
606
+ readonly useDownloadFile: UnwrapRef<typeof import('@uni-helper/uni-use')['useDownloadFile']>
607
+ readonly useDraggable: UnwrapRef<typeof import('@vueuse/core')['useDraggable']>
608
+ readonly useDropZone: UnwrapRef<typeof import('@vueuse/core')['useDropZone']>
609
+ readonly useElementBounding: UnwrapRef<typeof import('@vueuse/core')['useElementBounding']>
610
+ readonly useElementByPoint: UnwrapRef<typeof import('@vueuse/core')['useElementByPoint']>
611
+ readonly useElementHover: UnwrapRef<typeof import('@vueuse/core')['useElementHover']>
612
+ readonly useElementSize: UnwrapRef<typeof import('@vueuse/core')['useElementSize']>
613
+ readonly useElementVisibility: UnwrapRef<typeof import('@vueuse/core')['useElementVisibility']>
614
+ readonly useEventBus: UnwrapRef<typeof import('@vueuse/core')['useEventBus']>
615
+ readonly useEventListener: UnwrapRef<typeof import('@vueuse/core')['useEventListener']>
616
+ readonly useEventSource: UnwrapRef<typeof import('@vueuse/core')['useEventSource']>
617
+ readonly useEyeDropper: UnwrapRef<typeof import('@vueuse/core')['useEyeDropper']>
618
+ readonly useFavicon: UnwrapRef<typeof import('@vueuse/core')['useFavicon']>
619
+ readonly useFetch: UnwrapRef<typeof import('@vueuse/core')['useFetch']>
620
+ readonly useFileDialog: UnwrapRef<typeof import('@vueuse/core')['useFileDialog']>
621
+ readonly useFileSystemAccess: UnwrapRef<typeof import('@vueuse/core')['useFileSystemAccess']>
622
+ readonly useFocus: UnwrapRef<typeof import('@vueuse/core')['useFocus']>
623
+ readonly useFocusWithin: UnwrapRef<typeof import('@vueuse/core')['useFocusWithin']>
624
+ readonly useFps: UnwrapRef<typeof import('@vueuse/core')['useFps']>
625
+ readonly useFullscreen: UnwrapRef<typeof import('@vueuse/core')['useFullscreen']>
626
+ readonly useGamepad: UnwrapRef<typeof import('@vueuse/core')['useGamepad']>
627
+ readonly useGeolocation: UnwrapRef<typeof import('@vueuse/core')['useGeolocation']>
269
628
  readonly useGet: UnwrapRef<typeof import('./src/apis/requests/get')['useGet']>
629
+ readonly useGlobalData: UnwrapRef<typeof import('@uni-helper/uni-use')['useGlobalData']>
270
630
  readonly useHttpLoading: UnwrapRef<typeof import('./src/store/system')['useHttpLoading']>
631
+ readonly useIdle: UnwrapRef<typeof import('@vueuse/core')['useIdle']>
632
+ readonly useImage: UnwrapRef<typeof import('@vueuse/core')['useImage']>
633
+ readonly useInfiniteScroll: UnwrapRef<typeof import('@vueuse/core')['useInfiniteScroll']>
634
+ readonly useInterceptor: UnwrapRef<typeof import('@uni-helper/uni-use')['useInterceptor']>
635
+ readonly useIntersectionObserver: UnwrapRef<typeof import('@vueuse/core')['useIntersectionObserver']>
636
+ readonly useInterval: UnwrapRef<typeof import('@vueuse/core')['useInterval']>
637
+ readonly useIntervalFn: UnwrapRef<typeof import('@vueuse/core')['useIntervalFn']>
638
+ readonly useKeyModifier: UnwrapRef<typeof import('@vueuse/core')['useKeyModifier']>
639
+ readonly useLastChanged: UnwrapRef<typeof import('@vueuse/core')['useLastChanged']>
640
+ readonly useLoading: UnwrapRef<typeof import('@uni-helper/uni-use')['useLoading']>
641
+ readonly useLocalStorage: UnwrapRef<typeof import('@vueuse/core')['useLocalStorage']>
642
+ readonly useMagicKeys: UnwrapRef<typeof import('@vueuse/core')['useMagicKeys']>
643
+ readonly useManualRefHistory: UnwrapRef<typeof import('@vueuse/core')['useManualRefHistory']>
644
+ readonly useMediaControls: UnwrapRef<typeof import('@vueuse/core')['useMediaControls']>
645
+ readonly useMediaQuery: UnwrapRef<typeof import('@vueuse/core')['useMediaQuery']>
646
+ readonly useMemoize: UnwrapRef<typeof import('@vueuse/core')['useMemoize']>
647
+ readonly useMemory: UnwrapRef<typeof import('@vueuse/core')['useMemory']>
648
+ readonly useModal: UnwrapRef<typeof import('@uni-helper/uni-use')['useModal']>
649
+ readonly useMounted: UnwrapRef<typeof import('@vueuse/core')['useMounted']>
650
+ readonly useMouse: UnwrapRef<typeof import('@vueuse/core')['useMouse']>
651
+ readonly useMouseInElement: UnwrapRef<typeof import('@vueuse/core')['useMouseInElement']>
652
+ readonly useMousePressed: UnwrapRef<typeof import('@vueuse/core')['useMousePressed']>
653
+ readonly useMutationObserver: UnwrapRef<typeof import('@vueuse/core')['useMutationObserver']>
654
+ readonly useNavigatorLanguage: UnwrapRef<typeof import('@vueuse/core')['useNavigatorLanguage']>
655
+ readonly useNetwork: UnwrapRef<typeof import('@uni-helper/uni-use')['useNetwork']>
656
+ readonly useNow: UnwrapRef<typeof import('@vueuse/core')['useNow']>
657
+ readonly useObjectUrl: UnwrapRef<typeof import('@vueuse/core')['useObjectUrl']>
658
+ readonly useOffsetPagination: UnwrapRef<typeof import('@vueuse/core')['useOffsetPagination']>
659
+ readonly useOnline: UnwrapRef<typeof import('@uni-helper/uni-use')['useOnline']>
660
+ readonly usePage: UnwrapRef<typeof import('@uni-helper/uni-use')['usePage']>
661
+ readonly usePageLeave: UnwrapRef<typeof import('@vueuse/core')['usePageLeave']>
662
+ readonly usePageScroll: UnwrapRef<typeof import('@uni-helper/uni-use')['usePageScroll']>
663
+ readonly usePages: UnwrapRef<typeof import('@uni-helper/uni-use')['usePages']>
664
+ readonly useParallax: UnwrapRef<typeof import('@vueuse/core')['useParallax']>
665
+ readonly usePermission: UnwrapRef<typeof import('@vueuse/core')['usePermission']>
666
+ readonly usePointer: UnwrapRef<typeof import('@vueuse/core')['usePointer']>
667
+ readonly usePointerLock: UnwrapRef<typeof import('@vueuse/core')['usePointerLock']>
668
+ readonly usePointerSwipe: UnwrapRef<typeof import('@vueuse/core')['usePointerSwipe']>
271
669
  readonly usePost: UnwrapRef<typeof import('./src/apis/requests/post')['usePost']>
670
+ readonly usePreferredColorScheme: UnwrapRef<typeof import('@vueuse/core')['usePreferredColorScheme']>
671
+ readonly usePreferredContrast: UnwrapRef<typeof import('@vueuse/core')['usePreferredContrast']>
672
+ readonly usePreferredDark: UnwrapRef<typeof import('@uni-helper/uni-use')['usePreferredDark']>
673
+ readonly usePreferredLanguage: UnwrapRef<typeof import('@uni-helper/uni-use')['usePreferredLanguage']>
674
+ readonly usePreferredLanguages: UnwrapRef<typeof import('@vueuse/core')['usePreferredLanguages']>
675
+ readonly usePreferredReducedMotion: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedMotion']>
676
+ readonly usePrevPage: UnwrapRef<typeof import('@uni-helper/uni-use')['usePrevPage']>
677
+ readonly usePrevRoute: UnwrapRef<typeof import('@uni-helper/uni-use')['usePrevRoute']>
678
+ readonly usePrevious: UnwrapRef<typeof import('@vueuse/core')['usePrevious']>
679
+ readonly useProvider: UnwrapRef<typeof import('@uni-helper/uni-use')['useProvider']>
680
+ readonly useRafFn: UnwrapRef<typeof import('@vueuse/core')['useRafFn']>
681
+ readonly useRefHistory: UnwrapRef<typeof import('@vueuse/core')['useRefHistory']>
682
+ readonly useRequest: UnwrapRef<typeof import('@uni-helper/uni-use')['useRequest']>
683
+ readonly useResizeObserver: UnwrapRef<typeof import('@vueuse/core')['useResizeObserver']>
684
+ readonly useRoute: UnwrapRef<typeof import('@uni-helper/uni-use')['useRoute']>
685
+ readonly useRouter: UnwrapRef<typeof import('@uni-helper/uni-use')['useRouter']>
686
+ readonly useScanCode: UnwrapRef<typeof import('@uni-helper/uni-use')['useScanCode']>
687
+ readonly useScreenBrightness: UnwrapRef<typeof import('@uni-helper/uni-use')['useScreenBrightness']>
688
+ readonly useScreenOrientation: UnwrapRef<typeof import('@vueuse/core')['useScreenOrientation']>
689
+ readonly useScreenSafeArea: UnwrapRef<typeof import('@vueuse/core')['useScreenSafeArea']>
690
+ readonly useScriptTag: UnwrapRef<typeof import('@vueuse/core')['useScriptTag']>
691
+ readonly useScroll: UnwrapRef<typeof import('@vueuse/core')['useScroll']>
692
+ readonly useScrollLock: UnwrapRef<typeof import('@vueuse/core')['useScrollLock']>
693
+ readonly useSelectorQuery: UnwrapRef<typeof import('@uni-helper/uni-use')['useSelectorQuery']>
694
+ readonly useSessionStorage: UnwrapRef<typeof import('@vueuse/core')['useSessionStorage']>
695
+ readonly useShare: UnwrapRef<typeof import('@vueuse/core')['useShare']>
272
696
  readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
697
+ readonly useSocket: UnwrapRef<typeof import('@uni-helper/uni-use')['useSocket']>
698
+ readonly useSorted: UnwrapRef<typeof import('@vueuse/core')['useSorted']>
699
+ readonly useSpeechRecognition: UnwrapRef<typeof import('@vueuse/core')['useSpeechRecognition']>
700
+ readonly useSpeechSynthesis: UnwrapRef<typeof import('@vueuse/core')['useSpeechSynthesis']>
701
+ readonly useStepper: UnwrapRef<typeof import('@vueuse/core')['useStepper']>
702
+ readonly useStorage: UnwrapRef<typeof import('@vueuse/core')['useStorage']>
703
+ readonly useStorageAsync: UnwrapRef<typeof import('@uni-helper/uni-use')['useStorageAsync']>
704
+ readonly useStyleTag: UnwrapRef<typeof import('@vueuse/core')['useStyleTag']>
705
+ readonly useSupported: UnwrapRef<typeof import('@vueuse/core')['useSupported']>
706
+ readonly useSwipe: UnwrapRef<typeof import('@vueuse/core')['useSwipe']>
273
707
  readonly useSystemInfo: UnwrapRef<typeof import('./src/store/system')['useSystemInfo']>
708
+ readonly useTemplateRefsList: UnwrapRef<typeof import('@vueuse/core')['useTemplateRefsList']>
709
+ readonly useTextDirection: UnwrapRef<typeof import('@vueuse/core')['useTextDirection']>
710
+ readonly useTextSelection: UnwrapRef<typeof import('@vueuse/core')['useTextSelection']>
711
+ readonly useTextareaAutosize: UnwrapRef<typeof import('@vueuse/core')['useTextareaAutosize']>
712
+ readonly useThrottle: UnwrapRef<typeof import('@vueuse/core')['useThrottle']>
713
+ readonly useThrottleFn: UnwrapRef<typeof import('@vueuse/core')['useThrottleFn']>
714
+ readonly useThrottledRefHistory: UnwrapRef<typeof import('@vueuse/core')['useThrottledRefHistory']>
715
+ readonly useTimeAgo: UnwrapRef<typeof import('@vueuse/core')['useTimeAgo']>
716
+ readonly useTimeout: UnwrapRef<typeof import('@vueuse/core')['useTimeout']>
717
+ readonly useTimeoutFn: UnwrapRef<typeof import('@vueuse/core')['useTimeoutFn']>
718
+ readonly useTimeoutPoll: UnwrapRef<typeof import('@vueuse/core')['useTimeoutPoll']>
719
+ readonly useTimestamp: UnwrapRef<typeof import('@vueuse/core')['useTimestamp']>
720
+ readonly useTitle: UnwrapRef<typeof import('@vueuse/core')['useTitle']>
721
+ readonly useToNumber: UnwrapRef<typeof import('@vueuse/core')['useToNumber']>
722
+ readonly useToString: UnwrapRef<typeof import('@vueuse/core')['useToString']>
723
+ readonly useToast: UnwrapRef<typeof import('@uni-helper/uni-use')['useToast']>
724
+ readonly useToggle: UnwrapRef<typeof import('@vueuse/core')['useToggle']>
725
+ readonly useTransition: UnwrapRef<typeof import('@vueuse/core')['useTransition']>
726
+ readonly useUploadFile: UnwrapRef<typeof import('@uni-helper/uni-use')['useUploadFile']>
727
+ readonly useUrlSearchParams: UnwrapRef<typeof import('@vueuse/core')['useUrlSearchParams']>
728
+ readonly useUserMedia: UnwrapRef<typeof import('@vueuse/core')['useUserMedia']>
729
+ readonly useVModel: UnwrapRef<typeof import('@vueuse/core')['useVModel']>
730
+ readonly useVModels: UnwrapRef<typeof import('@vueuse/core')['useVModels']>
731
+ readonly useVibrate: UnwrapRef<typeof import('@vueuse/core')['useVibrate']>
732
+ readonly useVirtualList: UnwrapRef<typeof import('@vueuse/core')['useVirtualList']>
733
+ readonly useVisible: UnwrapRef<typeof import('@uni-helper/uni-use')['useVisible']>
734
+ readonly useWakeLock: UnwrapRef<typeof import('@vueuse/core')['useWakeLock']>
735
+ readonly useWebNotification: UnwrapRef<typeof import('@vueuse/core')['useWebNotification']>
736
+ readonly useWebSocket: UnwrapRef<typeof import('@vueuse/core')['useWebSocket']>
737
+ readonly useWebWorker: UnwrapRef<typeof import('@vueuse/core')['useWebWorker']>
738
+ readonly useWebWorkerFn: UnwrapRef<typeof import('@vueuse/core')['useWebWorkerFn']>
739
+ readonly useWindowFocus: UnwrapRef<typeof import('@vueuse/core')['useWindowFocus']>
740
+ readonly useWindowScroll: UnwrapRef<typeof import('@vueuse/core')['useWindowScroll']>
741
+ readonly useWindowSize: UnwrapRef<typeof import('@vueuse/core')['useWindowSize']>
274
742
  readonly watch: UnwrapRef<typeof import('vue')['watch']>
743
+ readonly watchArray: UnwrapRef<typeof import('@vueuse/core')['watchArray']>
744
+ readonly watchAtMost: UnwrapRef<typeof import('@vueuse/core')['watchAtMost']>
745
+ readonly watchDebounced: UnwrapRef<typeof import('@vueuse/core')['watchDebounced']>
275
746
  readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
747
+ readonly watchIgnorable: UnwrapRef<typeof import('@vueuse/core')['watchIgnorable']>
748
+ readonly watchOnce: UnwrapRef<typeof import('@vueuse/core')['watchOnce']>
749
+ readonly watchPausable: UnwrapRef<typeof import('@vueuse/core')['watchPausable']>
276
750
  readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
277
751
  readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
752
+ readonly watchThrottled: UnwrapRef<typeof import('@vueuse/core')['watchThrottled']>
753
+ readonly watchTriggerable: UnwrapRef<typeof import('@vueuse/core')['watchTriggerable']>
754
+ readonly watchWithFilter: UnwrapRef<typeof import('@vueuse/core')['watchWithFilter']>
755
+ readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
278
756
  }
279
757
  }
280
758
  declare module '@vue/runtime-core' {
@@ -288,17 +766,35 @@ declare module '@vue/runtime-core' {
288
766
  readonly YoungStorageKeys: UnwrapRef<typeof import('./src/config/enum')['YoungStorageKeys']>
289
767
  readonly acceptHMRUpdate: UnwrapRef<typeof import('pinia')['acceptHMRUpdate']>
290
768
  readonly apis: UnwrapRef<typeof import('./src/apis/index')['apis']>
769
+ readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
291
770
  readonly authLocation: UnwrapRef<typeof import('./src/utils/auth')['authLocation']>
771
+ readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
292
772
  readonly back: UnwrapRef<typeof import('./src/utils/route')['back']>
293
773
  readonly checkFingerPrint: UnwrapRef<typeof import('./src/utils/auth')['checkFingerPrint']>
294
774
  readonly computed: UnwrapRef<typeof import('vue')['computed']>
775
+ readonly computedAsync: UnwrapRef<typeof import('@vueuse/core')['computedAsync']>
776
+ readonly computedEager: UnwrapRef<typeof import('@vueuse/core')['computedEager']>
777
+ readonly computedInject: UnwrapRef<typeof import('@vueuse/core')['computedInject']>
778
+ readonly computedWithControl: UnwrapRef<typeof import('@vueuse/core')['computedWithControl']>
779
+ readonly controlledComputed: UnwrapRef<typeof import('@vueuse/core')['controlledComputed']>
780
+ readonly controlledRef: UnwrapRef<typeof import('@vueuse/core')['controlledRef']>
295
781
  readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
782
+ readonly createEventHook: UnwrapRef<typeof import('@vueuse/core')['createEventHook']>
783
+ readonly createGlobalState: UnwrapRef<typeof import('@vueuse/core')['createGlobalState']>
784
+ readonly createInjectionState: UnwrapRef<typeof import('@vueuse/core')['createInjectionState']>
296
785
  readonly createPinia: UnwrapRef<typeof import('pinia')['createPinia']>
786
+ readonly createReactiveFn: UnwrapRef<typeof import('@vueuse/core')['createReactiveFn']>
787
+ readonly createSharedComposable: UnwrapRef<typeof import('@vueuse/core')['createSharedComposable']>
788
+ readonly createUnrefFn: UnwrapRef<typeof import('@vueuse/core')['createUnrefFn']>
297
789
  readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
790
+ readonly debouncedRef: UnwrapRef<typeof import('@vueuse/core')['debouncedRef']>
791
+ readonly debouncedWatch: UnwrapRef<typeof import('@vueuse/core')['debouncedWatch']>
298
792
  readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
299
793
  readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
300
794
  readonly defineStore: UnwrapRef<typeof import('pinia')['defineStore']>
795
+ readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
301
796
  readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
797
+ readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
302
798
  readonly fingerPrintAuth: UnwrapRef<typeof import('./src/utils/auth')['fingerPrintAuth']>
303
799
  readonly geocoderLocation: UnwrapRef<typeof import('./src/utils/map')['geocoderLocation']>
304
800
  readonly getActivePinia: UnwrapRef<typeof import('pinia')['getActivePinia']>
@@ -314,12 +810,15 @@ declare module '@vue/runtime-core' {
314
810
  readonly getWxCode: UnwrapRef<typeof import('./src/utils/auth')['getWxCode']>
315
811
  readonly h: UnwrapRef<typeof import('vue')['h']>
316
812
  readonly hideLoading: UnwrapRef<typeof import('./src/utils/modal')['hideLoading']>
813
+ readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
317
814
  readonly inject: UnwrapRef<typeof import('vue')['inject']>
815
+ readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
318
816
  readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
319
817
  readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
320
818
  readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
321
819
  readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
322
820
  readonly locate: UnwrapRef<typeof import('./src/utils/auth')['locate']>
821
+ readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
323
822
  readonly mapActions: UnwrapRef<typeof import('pinia')['mapActions']>
324
823
  readonly mapGetters: UnwrapRef<typeof import('pinia')['mapGetters']>
325
824
  readonly mapState: UnwrapRef<typeof import('pinia')['mapState']>
@@ -333,12 +832,15 @@ declare module '@vue/runtime-core' {
333
832
  readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
334
833
  readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
335
834
  readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
835
+ readonly onClickOutside: UnwrapRef<typeof import('@vueuse/core')['onClickOutside']>
336
836
  readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
337
837
  readonly onError: UnwrapRef<typeof import('@dcloudio/uni-app')['onError']>
338
838
  readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
339
839
  readonly onHide: UnwrapRef<typeof import('@dcloudio/uni-app')['onHide']>
840
+ readonly onKeyStroke: UnwrapRef<typeof import('@vueuse/core')['onKeyStroke']>
340
841
  readonly onLaunch: UnwrapRef<typeof import('@dcloudio/uni-app')['onLaunch']>
341
842
  readonly onLoad: UnwrapRef<typeof import('@dcloudio/uni-app')['onLoad']>
843
+ readonly onLongPress: UnwrapRef<typeof import('@vueuse/core')['onLongPress']>
342
844
  readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
343
845
  readonly onNavigationBarButtonTap: UnwrapRef<typeof import('@dcloudio/uni-app')['onNavigationBarButtonTap']>
344
846
  readonly onNavigationBarSearchInputChanged: UnwrapRef<typeof import('@dcloudio/uni-app')['onNavigationBarSearchInputChanged']>
@@ -358,20 +860,34 @@ declare module '@vue/runtime-core' {
358
860
  readonly onShareAppMessage: UnwrapRef<typeof import('@dcloudio/uni-app')['onShareAppMessage']>
359
861
  readonly onShareTimeline: UnwrapRef<typeof import('@dcloudio/uni-app')['onShareTimeline']>
360
862
  readonly onShow: UnwrapRef<typeof import('@dcloudio/uni-app')['onShow']>
863
+ readonly onStartTyping: UnwrapRef<typeof import('@vueuse/core')['onStartTyping']>
361
864
  readonly onTabItemTap: UnwrapRef<typeof import('@dcloudio/uni-app')['onTabItemTap']>
362
865
  readonly onThemeChange: UnwrapRef<typeof import('@dcloudio/uni-app')['onThemeChange']>
363
866
  readonly onUnhandledRejection: UnwrapRef<typeof import('@dcloudio/uni-app')['onUnhandledRejection']>
364
867
  readonly onUnload: UnwrapRef<typeof import('@dcloudio/uni-app')['onUnload']>
365
868
  readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
366
869
  readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
870
+ readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
367
871
  readonly provide: UnwrapRef<typeof import('vue')['provide']>
872
+ readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
873
+ readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
368
874
  readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
875
+ readonly reactiveComputed: UnwrapRef<typeof import('@vueuse/core')['reactiveComputed']>
876
+ readonly reactiveOmit: UnwrapRef<typeof import('@vueuse/core')['reactiveOmit']>
877
+ readonly reactivePick: UnwrapRef<typeof import('@vueuse/core')['reactivePick']>
369
878
  readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
370
879
  readonly redirect: UnwrapRef<typeof import('./src/utils/route')['redirect']>
371
880
  readonly ref: UnwrapRef<typeof import('vue')['ref']>
881
+ readonly refAutoReset: UnwrapRef<typeof import('@vueuse/core')['refAutoReset']>
882
+ readonly refDebounced: UnwrapRef<typeof import('@vueuse/core')['refDebounced']>
883
+ readonly refDefault: UnwrapRef<typeof import('@vueuse/core')['refDefault']>
884
+ readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
885
+ readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
372
886
  readonly relaunch: UnwrapRef<typeof import('./src/utils/route')['relaunch']>
373
887
  readonly removeLocationInfo: UnwrapRef<typeof import('./src/store/local/index')['removeLocationInfo']>
374
888
  readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
889
+ readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
890
+ readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
375
891
  readonly route: UnwrapRef<typeof import('./src/utils/route')['route']>
376
892
  readonly searchLoaction: UnwrapRef<typeof import('./src/utils/map')['searchLoaction']>
377
893
  readonly setActivePinia: UnwrapRef<typeof import('pinia')['setActivePinia']>
@@ -389,25 +905,226 @@ declare module '@vue/runtime-core' {
389
905
  readonly showToast: UnwrapRef<typeof import('./src/utils/modal')['showToast']>
390
906
  readonly storeToRefs: UnwrapRef<typeof import('pinia')['storeToRefs']>
391
907
  readonly subscribeMessage: UnwrapRef<typeof import('./src/utils/system')['subscribeMessage']>
908
+ readonly syncRef: UnwrapRef<typeof import('@vueuse/core')['syncRef']>
909
+ readonly syncRefs: UnwrapRef<typeof import('@vueuse/core')['syncRefs']>
392
910
  readonly tabbar: UnwrapRef<typeof import('./src/utils/route')['tabbar']>
911
+ readonly templateRef: UnwrapRef<typeof import('@vueuse/core')['templateRef']>
912
+ readonly throttledRef: UnwrapRef<typeof import('@vueuse/core')['throttledRef']>
913
+ readonly throttledWatch: UnwrapRef<typeof import('@vueuse/core')['throttledWatch']>
393
914
  readonly to: UnwrapRef<typeof import('./src/utils/route')['to']>
394
915
  readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
916
+ readonly toReactive: UnwrapRef<typeof import('@vueuse/core')['toReactive']>
395
917
  readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
396
918
  readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
397
919
  readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
398
920
  readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
921
+ readonly tryOnBeforeMount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeMount']>
922
+ readonly tryOnBeforeUnmount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeUnmount']>
923
+ readonly tryOnHide: UnwrapRef<typeof import('@uni-helper/uni-use')['tryOnHide']>
924
+ readonly tryOnInit: UnwrapRef<typeof import('@uni-helper/uni-use')['tryOnInit']>
925
+ readonly tryOnLoad: UnwrapRef<typeof import('@uni-helper/uni-use')['tryOnLoad']>
926
+ readonly tryOnMounted: UnwrapRef<typeof import('@vueuse/core')['tryOnMounted']>
927
+ readonly tryOnReady: UnwrapRef<typeof import('@uni-helper/uni-use')['tryOnReady']>
928
+ readonly tryOnScopeDispose: UnwrapRef<typeof import('@vueuse/core')['tryOnScopeDispose']>
929
+ readonly tryOnShow: UnwrapRef<typeof import('@uni-helper/uni-use')['tryOnShow']>
930
+ readonly tryOnUnload: UnwrapRef<typeof import('@uni-helper/uni-use')['tryOnUnload']>
931
+ readonly tryOnUnmounted: UnwrapRef<typeof import('@vueuse/core')['tryOnUnmounted']>
399
932
  readonly unref: UnwrapRef<typeof import('vue')['unref']>
933
+ readonly unrefElement: UnwrapRef<typeof import('@vueuse/core')['unrefElement']>
934
+ readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
935
+ readonly useActionSheet: UnwrapRef<typeof import('@uni-helper/uni-use')['useActionSheet']>
936
+ readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
937
+ readonly useArrayEvery: UnwrapRef<typeof import('@vueuse/core')['useArrayEvery']>
938
+ readonly useArrayFilter: UnwrapRef<typeof import('@vueuse/core')['useArrayFilter']>
939
+ readonly useArrayFind: UnwrapRef<typeof import('@vueuse/core')['useArrayFind']>
940
+ readonly useArrayFindIndex: UnwrapRef<typeof import('@vueuse/core')['useArrayFindIndex']>
941
+ readonly useArrayFindLast: UnwrapRef<typeof import('@vueuse/core')['useArrayFindLast']>
942
+ readonly useArrayJoin: UnwrapRef<typeof import('@vueuse/core')['useArrayJoin']>
943
+ readonly useArrayMap: UnwrapRef<typeof import('@vueuse/core')['useArrayMap']>
944
+ readonly useArrayReduce: UnwrapRef<typeof import('@vueuse/core')['useArrayReduce']>
945
+ readonly useArraySome: UnwrapRef<typeof import('@vueuse/core')['useArraySome']>
946
+ readonly useArrayUnique: UnwrapRef<typeof import('@vueuse/core')['useArrayUnique']>
947
+ readonly useAsyncQueue: UnwrapRef<typeof import('@vueuse/core')['useAsyncQueue']>
948
+ readonly useAsyncState: UnwrapRef<typeof import('@vueuse/core')['useAsyncState']>
400
949
  readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
950
+ readonly useBase64: UnwrapRef<typeof import('@vueuse/core')['useBase64']>
951
+ readonly useBattery: UnwrapRef<typeof import('@vueuse/core')['useBattery']>
952
+ readonly useBluetooth: UnwrapRef<typeof import('@vueuse/core')['useBluetooth']>
953
+ readonly useBreakpoints: UnwrapRef<typeof import('@vueuse/core')['useBreakpoints']>
954
+ readonly useBroadcastChannel: UnwrapRef<typeof import('@vueuse/core')['useBroadcastChannel']>
955
+ readonly useBrowserLocation: UnwrapRef<typeof import('@vueuse/core')['useBrowserLocation']>
956
+ readonly useCached: UnwrapRef<typeof import('@vueuse/core')['useCached']>
957
+ readonly useClipboard: UnwrapRef<typeof import('@vueuse/core')['useClipboard']>
958
+ readonly useClipboardData: UnwrapRef<typeof import('@uni-helper/uni-use')['useClipboardData']>
959
+ readonly useCloned: UnwrapRef<typeof import('@vueuse/core')['useCloned']>
960
+ readonly useColorMode: UnwrapRef<typeof import('@vueuse/core')['useColorMode']>
961
+ readonly useConfirmDialog: UnwrapRef<typeof import('@vueuse/core')['useConfirmDialog']>
962
+ readonly useCounter: UnwrapRef<typeof import('@vueuse/core')['useCounter']>
401
963
  readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
964
+ readonly useCssVar: UnwrapRef<typeof import('@vueuse/core')['useCssVar']>
402
965
  readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
966
+ readonly useCurrentElement: UnwrapRef<typeof import('@vueuse/core')['useCurrentElement']>
967
+ readonly useCycleList: UnwrapRef<typeof import('@vueuse/core')['useCycleList']>
968
+ readonly useDark: UnwrapRef<typeof import('@vueuse/core')['useDark']>
969
+ readonly useDateFormat: UnwrapRef<typeof import('@vueuse/core')['useDateFormat']>
970
+ readonly useDebounce: UnwrapRef<typeof import('@vueuse/core')['useDebounce']>
971
+ readonly useDebounceFn: UnwrapRef<typeof import('@vueuse/core')['useDebounceFn']>
972
+ readonly useDebouncedRefHistory: UnwrapRef<typeof import('@vueuse/core')['useDebouncedRefHistory']>
973
+ readonly useDeviceMotion: UnwrapRef<typeof import('@vueuse/core')['useDeviceMotion']>
974
+ readonly useDeviceOrientation: UnwrapRef<typeof import('@vueuse/core')['useDeviceOrientation']>
975
+ readonly useDevicePixelRatio: UnwrapRef<typeof import('@vueuse/core')['useDevicePixelRatio']>
976
+ readonly useDevicesList: UnwrapRef<typeof import('@vueuse/core')['useDevicesList']>
977
+ readonly useDisplayMedia: UnwrapRef<typeof import('@vueuse/core')['useDisplayMedia']>
978
+ readonly useDocumentVisibility: UnwrapRef<typeof import('@vueuse/core')['useDocumentVisibility']>
979
+ readonly useDownloadFile: UnwrapRef<typeof import('@uni-helper/uni-use')['useDownloadFile']>
980
+ readonly useDraggable: UnwrapRef<typeof import('@vueuse/core')['useDraggable']>
981
+ readonly useDropZone: UnwrapRef<typeof import('@vueuse/core')['useDropZone']>
982
+ readonly useElementBounding: UnwrapRef<typeof import('@vueuse/core')['useElementBounding']>
983
+ readonly useElementByPoint: UnwrapRef<typeof import('@vueuse/core')['useElementByPoint']>
984
+ readonly useElementHover: UnwrapRef<typeof import('@vueuse/core')['useElementHover']>
985
+ readonly useElementSize: UnwrapRef<typeof import('@vueuse/core')['useElementSize']>
986
+ readonly useElementVisibility: UnwrapRef<typeof import('@vueuse/core')['useElementVisibility']>
987
+ readonly useEventBus: UnwrapRef<typeof import('@vueuse/core')['useEventBus']>
988
+ readonly useEventListener: UnwrapRef<typeof import('@vueuse/core')['useEventListener']>
989
+ readonly useEventSource: UnwrapRef<typeof import('@vueuse/core')['useEventSource']>
990
+ readonly useEyeDropper: UnwrapRef<typeof import('@vueuse/core')['useEyeDropper']>
991
+ readonly useFavicon: UnwrapRef<typeof import('@vueuse/core')['useFavicon']>
992
+ readonly useFetch: UnwrapRef<typeof import('@vueuse/core')['useFetch']>
993
+ readonly useFileDialog: UnwrapRef<typeof import('@vueuse/core')['useFileDialog']>
994
+ readonly useFileSystemAccess: UnwrapRef<typeof import('@vueuse/core')['useFileSystemAccess']>
995
+ readonly useFocus: UnwrapRef<typeof import('@vueuse/core')['useFocus']>
996
+ readonly useFocusWithin: UnwrapRef<typeof import('@vueuse/core')['useFocusWithin']>
997
+ readonly useFps: UnwrapRef<typeof import('@vueuse/core')['useFps']>
998
+ readonly useFullscreen: UnwrapRef<typeof import('@vueuse/core')['useFullscreen']>
999
+ readonly useGamepad: UnwrapRef<typeof import('@vueuse/core')['useGamepad']>
1000
+ readonly useGeolocation: UnwrapRef<typeof import('@vueuse/core')['useGeolocation']>
403
1001
  readonly useGet: UnwrapRef<typeof import('./src/apis/requests/get')['useGet']>
1002
+ readonly useGlobalData: UnwrapRef<typeof import('@uni-helper/uni-use')['useGlobalData']>
404
1003
  readonly useHttpLoading: UnwrapRef<typeof import('./src/store/system')['useHttpLoading']>
1004
+ readonly useIdle: UnwrapRef<typeof import('@vueuse/core')['useIdle']>
1005
+ readonly useImage: UnwrapRef<typeof import('@vueuse/core')['useImage']>
1006
+ readonly useInfiniteScroll: UnwrapRef<typeof import('@vueuse/core')['useInfiniteScroll']>
1007
+ readonly useInterceptor: UnwrapRef<typeof import('@uni-helper/uni-use')['useInterceptor']>
1008
+ readonly useIntersectionObserver: UnwrapRef<typeof import('@vueuse/core')['useIntersectionObserver']>
1009
+ readonly useInterval: UnwrapRef<typeof import('@vueuse/core')['useInterval']>
1010
+ readonly useIntervalFn: UnwrapRef<typeof import('@vueuse/core')['useIntervalFn']>
1011
+ readonly useKeyModifier: UnwrapRef<typeof import('@vueuse/core')['useKeyModifier']>
1012
+ readonly useLastChanged: UnwrapRef<typeof import('@vueuse/core')['useLastChanged']>
1013
+ readonly useLoading: UnwrapRef<typeof import('@uni-helper/uni-use')['useLoading']>
1014
+ readonly useLocalStorage: UnwrapRef<typeof import('@vueuse/core')['useLocalStorage']>
1015
+ readonly useMagicKeys: UnwrapRef<typeof import('@vueuse/core')['useMagicKeys']>
1016
+ readonly useManualRefHistory: UnwrapRef<typeof import('@vueuse/core')['useManualRefHistory']>
1017
+ readonly useMediaControls: UnwrapRef<typeof import('@vueuse/core')['useMediaControls']>
1018
+ readonly useMediaQuery: UnwrapRef<typeof import('@vueuse/core')['useMediaQuery']>
1019
+ readonly useMemoize: UnwrapRef<typeof import('@vueuse/core')['useMemoize']>
1020
+ readonly useMemory: UnwrapRef<typeof import('@vueuse/core')['useMemory']>
1021
+ readonly useModal: UnwrapRef<typeof import('@uni-helper/uni-use')['useModal']>
1022
+ readonly useMounted: UnwrapRef<typeof import('@vueuse/core')['useMounted']>
1023
+ readonly useMouse: UnwrapRef<typeof import('@vueuse/core')['useMouse']>
1024
+ readonly useMouseInElement: UnwrapRef<typeof import('@vueuse/core')['useMouseInElement']>
1025
+ readonly useMousePressed: UnwrapRef<typeof import('@vueuse/core')['useMousePressed']>
1026
+ readonly useMutationObserver: UnwrapRef<typeof import('@vueuse/core')['useMutationObserver']>
1027
+ readonly useNavigatorLanguage: UnwrapRef<typeof import('@vueuse/core')['useNavigatorLanguage']>
1028
+ readonly useNetwork: UnwrapRef<typeof import('@uni-helper/uni-use')['useNetwork']>
1029
+ readonly useNow: UnwrapRef<typeof import('@vueuse/core')['useNow']>
1030
+ readonly useObjectUrl: UnwrapRef<typeof import('@vueuse/core')['useObjectUrl']>
1031
+ readonly useOffsetPagination: UnwrapRef<typeof import('@vueuse/core')['useOffsetPagination']>
1032
+ readonly useOnline: UnwrapRef<typeof import('@uni-helper/uni-use')['useOnline']>
1033
+ readonly usePage: UnwrapRef<typeof import('@uni-helper/uni-use')['usePage']>
1034
+ readonly usePageLeave: UnwrapRef<typeof import('@vueuse/core')['usePageLeave']>
1035
+ readonly usePageScroll: UnwrapRef<typeof import('@uni-helper/uni-use')['usePageScroll']>
1036
+ readonly usePages: UnwrapRef<typeof import('@uni-helper/uni-use')['usePages']>
1037
+ readonly useParallax: UnwrapRef<typeof import('@vueuse/core')['useParallax']>
1038
+ readonly usePermission: UnwrapRef<typeof import('@vueuse/core')['usePermission']>
1039
+ readonly usePointer: UnwrapRef<typeof import('@vueuse/core')['usePointer']>
1040
+ readonly usePointerLock: UnwrapRef<typeof import('@vueuse/core')['usePointerLock']>
1041
+ readonly usePointerSwipe: UnwrapRef<typeof import('@vueuse/core')['usePointerSwipe']>
405
1042
  readonly usePost: UnwrapRef<typeof import('./src/apis/requests/post')['usePost']>
1043
+ readonly usePreferredColorScheme: UnwrapRef<typeof import('@vueuse/core')['usePreferredColorScheme']>
1044
+ readonly usePreferredContrast: UnwrapRef<typeof import('@vueuse/core')['usePreferredContrast']>
1045
+ readonly usePreferredDark: UnwrapRef<typeof import('@uni-helper/uni-use')['usePreferredDark']>
1046
+ readonly usePreferredLanguage: UnwrapRef<typeof import('@uni-helper/uni-use')['usePreferredLanguage']>
1047
+ readonly usePreferredLanguages: UnwrapRef<typeof import('@vueuse/core')['usePreferredLanguages']>
1048
+ readonly usePreferredReducedMotion: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedMotion']>
1049
+ readonly usePrevPage: UnwrapRef<typeof import('@uni-helper/uni-use')['usePrevPage']>
1050
+ readonly usePrevRoute: UnwrapRef<typeof import('@uni-helper/uni-use')['usePrevRoute']>
1051
+ readonly usePrevious: UnwrapRef<typeof import('@vueuse/core')['usePrevious']>
1052
+ readonly useProvider: UnwrapRef<typeof import('@uni-helper/uni-use')['useProvider']>
1053
+ readonly useRafFn: UnwrapRef<typeof import('@vueuse/core')['useRafFn']>
1054
+ readonly useRefHistory: UnwrapRef<typeof import('@vueuse/core')['useRefHistory']>
1055
+ readonly useRequest: UnwrapRef<typeof import('@uni-helper/uni-use')['useRequest']>
1056
+ readonly useResizeObserver: UnwrapRef<typeof import('@vueuse/core')['useResizeObserver']>
1057
+ readonly useRoute: UnwrapRef<typeof import('@uni-helper/uni-use')['useRoute']>
1058
+ readonly useRouter: UnwrapRef<typeof import('@uni-helper/uni-use')['useRouter']>
1059
+ readonly useScanCode: UnwrapRef<typeof import('@uni-helper/uni-use')['useScanCode']>
1060
+ readonly useScreenBrightness: UnwrapRef<typeof import('@uni-helper/uni-use')['useScreenBrightness']>
1061
+ readonly useScreenOrientation: UnwrapRef<typeof import('@vueuse/core')['useScreenOrientation']>
1062
+ readonly useScreenSafeArea: UnwrapRef<typeof import('@vueuse/core')['useScreenSafeArea']>
1063
+ readonly useScriptTag: UnwrapRef<typeof import('@vueuse/core')['useScriptTag']>
1064
+ readonly useScroll: UnwrapRef<typeof import('@vueuse/core')['useScroll']>
1065
+ readonly useScrollLock: UnwrapRef<typeof import('@vueuse/core')['useScrollLock']>
1066
+ readonly useSelectorQuery: UnwrapRef<typeof import('@uni-helper/uni-use')['useSelectorQuery']>
1067
+ readonly useSessionStorage: UnwrapRef<typeof import('@vueuse/core')['useSessionStorage']>
1068
+ readonly useShare: UnwrapRef<typeof import('@vueuse/core')['useShare']>
406
1069
  readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
1070
+ readonly useSocket: UnwrapRef<typeof import('@uni-helper/uni-use')['useSocket']>
1071
+ readonly useSorted: UnwrapRef<typeof import('@vueuse/core')['useSorted']>
1072
+ readonly useSpeechRecognition: UnwrapRef<typeof import('@vueuse/core')['useSpeechRecognition']>
1073
+ readonly useSpeechSynthesis: UnwrapRef<typeof import('@vueuse/core')['useSpeechSynthesis']>
1074
+ readonly useStepper: UnwrapRef<typeof import('@vueuse/core')['useStepper']>
1075
+ readonly useStorage: UnwrapRef<typeof import('@vueuse/core')['useStorage']>
1076
+ readonly useStorageAsync: UnwrapRef<typeof import('@uni-helper/uni-use')['useStorageAsync']>
1077
+ readonly useStyleTag: UnwrapRef<typeof import('@vueuse/core')['useStyleTag']>
1078
+ readonly useSupported: UnwrapRef<typeof import('@vueuse/core')['useSupported']>
1079
+ readonly useSwipe: UnwrapRef<typeof import('@vueuse/core')['useSwipe']>
407
1080
  readonly useSystemInfo: UnwrapRef<typeof import('./src/store/system')['useSystemInfo']>
1081
+ readonly useTemplateRefsList: UnwrapRef<typeof import('@vueuse/core')['useTemplateRefsList']>
1082
+ readonly useTextDirection: UnwrapRef<typeof import('@vueuse/core')['useTextDirection']>
1083
+ readonly useTextSelection: UnwrapRef<typeof import('@vueuse/core')['useTextSelection']>
1084
+ readonly useTextareaAutosize: UnwrapRef<typeof import('@vueuse/core')['useTextareaAutosize']>
1085
+ readonly useThrottle: UnwrapRef<typeof import('@vueuse/core')['useThrottle']>
1086
+ readonly useThrottleFn: UnwrapRef<typeof import('@vueuse/core')['useThrottleFn']>
1087
+ readonly useThrottledRefHistory: UnwrapRef<typeof import('@vueuse/core')['useThrottledRefHistory']>
1088
+ readonly useTimeAgo: UnwrapRef<typeof import('@vueuse/core')['useTimeAgo']>
1089
+ readonly useTimeout: UnwrapRef<typeof import('@vueuse/core')['useTimeout']>
1090
+ readonly useTimeoutFn: UnwrapRef<typeof import('@vueuse/core')['useTimeoutFn']>
1091
+ readonly useTimeoutPoll: UnwrapRef<typeof import('@vueuse/core')['useTimeoutPoll']>
1092
+ readonly useTimestamp: UnwrapRef<typeof import('@vueuse/core')['useTimestamp']>
1093
+ readonly useTitle: UnwrapRef<typeof import('@vueuse/core')['useTitle']>
1094
+ readonly useToNumber: UnwrapRef<typeof import('@vueuse/core')['useToNumber']>
1095
+ readonly useToString: UnwrapRef<typeof import('@vueuse/core')['useToString']>
1096
+ readonly useToast: UnwrapRef<typeof import('@uni-helper/uni-use')['useToast']>
1097
+ readonly useToggle: UnwrapRef<typeof import('@vueuse/core')['useToggle']>
1098
+ readonly useTransition: UnwrapRef<typeof import('@vueuse/core')['useTransition']>
1099
+ readonly useUploadFile: UnwrapRef<typeof import('@uni-helper/uni-use')['useUploadFile']>
1100
+ readonly useUrlSearchParams: UnwrapRef<typeof import('@vueuse/core')['useUrlSearchParams']>
1101
+ readonly useUserMedia: UnwrapRef<typeof import('@vueuse/core')['useUserMedia']>
1102
+ readonly useVModel: UnwrapRef<typeof import('@vueuse/core')['useVModel']>
1103
+ readonly useVModels: UnwrapRef<typeof import('@vueuse/core')['useVModels']>
1104
+ readonly useVibrate: UnwrapRef<typeof import('@vueuse/core')['useVibrate']>
1105
+ readonly useVirtualList: UnwrapRef<typeof import('@vueuse/core')['useVirtualList']>
1106
+ readonly useVisible: UnwrapRef<typeof import('@uni-helper/uni-use')['useVisible']>
1107
+ readonly useWakeLock: UnwrapRef<typeof import('@vueuse/core')['useWakeLock']>
1108
+ readonly useWebNotification: UnwrapRef<typeof import('@vueuse/core')['useWebNotification']>
1109
+ readonly useWebSocket: UnwrapRef<typeof import('@vueuse/core')['useWebSocket']>
1110
+ readonly useWebWorker: UnwrapRef<typeof import('@vueuse/core')['useWebWorker']>
1111
+ readonly useWebWorkerFn: UnwrapRef<typeof import('@vueuse/core')['useWebWorkerFn']>
1112
+ readonly useWindowFocus: UnwrapRef<typeof import('@vueuse/core')['useWindowFocus']>
1113
+ readonly useWindowScroll: UnwrapRef<typeof import('@vueuse/core')['useWindowScroll']>
1114
+ readonly useWindowSize: UnwrapRef<typeof import('@vueuse/core')['useWindowSize']>
408
1115
  readonly watch: UnwrapRef<typeof import('vue')['watch']>
1116
+ readonly watchArray: UnwrapRef<typeof import('@vueuse/core')['watchArray']>
1117
+ readonly watchAtMost: UnwrapRef<typeof import('@vueuse/core')['watchAtMost']>
1118
+ readonly watchDebounced: UnwrapRef<typeof import('@vueuse/core')['watchDebounced']>
409
1119
  readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
1120
+ readonly watchIgnorable: UnwrapRef<typeof import('@vueuse/core')['watchIgnorable']>
1121
+ readonly watchOnce: UnwrapRef<typeof import('@vueuse/core')['watchOnce']>
1122
+ readonly watchPausable: UnwrapRef<typeof import('@vueuse/core')['watchPausable']>
410
1123
  readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
411
1124
  readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
1125
+ readonly watchThrottled: UnwrapRef<typeof import('@vueuse/core')['watchThrottled']>
1126
+ readonly watchTriggerable: UnwrapRef<typeof import('@vueuse/core')['watchTriggerable']>
1127
+ readonly watchWithFilter: UnwrapRef<typeof import('@vueuse/core')['watchWithFilter']>
1128
+ readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
412
1129
  }
413
1130
  }