minitest2.0 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. package/.editorconfig +8 -0
  2. package/.env.development +3 -0
  3. package/.env.production +3 -0
  4. package/.env.test +3 -0
  5. package/.gitattributes +1 -0
  6. package/.oxlintrc.json +10 -0
  7. package/.prettierrc.json +6 -0
  8. package/.vscode/extensions.json +9 -0
  9. package/.vscode/settings.json +13 -0
  10. package/README.md +179 -0
  11. package/auto-imports.d.ts +629 -0
  12. package/components.d.ts +21 -0
  13. package/design-qa.md +36 -0
  14. package/docs/MX_API.md +244 -0
  15. package/docs/REQUEST.md +217 -0
  16. package/docs/jsapi.js +515 -0
  17. package/docs/package-json-guide.md +132 -0
  18. package/env.d.ts +15 -0
  19. package/eslint.config.ts +26 -0
  20. package/index.html +16 -0
  21. package/package.json +83 -0
  22. package/plugins/bump-version.ts +61 -0
  23. package/postcss.config.ts +15 -0
  24. package/public/favicon.ico +0 -0
  25. package/public/images/12a73787-86a9-4891-a65f-66104746f6a8.png +0 -0
  26. package/public/images/5798d7aa-ba8b-4605-8079-58b35495ac55.png +0 -0
  27. package/public/images/73fef1e4-0fd0-4a1a-9b8b-a70a5b6acbbc.png +0 -0
  28. package/public/images/bc685b4c-0cca-4a79-924c-a8ee10e6f8eb.png +0 -0
  29. package/public/images/c3dbbd9d-be56-490e-b9f4-6ee17ebefffc.png +0 -0
  30. package/public/images/ea745a10-42aa-4f44-8d7f-3ab02cc0adcd.png +0 -0
  31. package/public/images/f5876785-b927-4347-ba19-999114240649.png +0 -0
  32. package/public/images/img.png +0 -0
  33. package/public/images/opening-reserve-estimate.png +0 -0
  34. package/public/images/position-estimate-report.png +0 -0
  35. package/src/App.vue +131 -0
  36. package/src/api/announcement.ts +405 -0
  37. package/src/api/health.ts +13 -0
  38. package/src/api/pbc-position.ts +178 -0
  39. package/src/api/rmb-position.ts +233 -0
  40. package/src/api/tam.ts +173 -0
  41. package/src/api/user.ts +92 -0
  42. package/src/auto-imports.d.ts +633 -0
  43. package/src/components/AppTitleBar.vue +376 -0
  44. package/src/components.d.ts +33 -0
  45. package/src/config/config.properties +3 -0
  46. package/src/config/env.ts +6 -0
  47. package/src/config/plugin.properties.pro +6 -0
  48. package/src/config/plugin.properties.test +6 -0
  49. package/src/core/mxApi/index.ts +451 -0
  50. package/src/core/request/index.ts +135 -0
  51. package/src/main.ts +40 -0
  52. package/src/router/index.ts +144 -0
  53. package/src/stores/app.ts +103 -0
  54. package/src/stores/counter.ts +12 -0
  55. package/src/stores/user.ts +137 -0
  56. package/src/styles/nprogress.css +22 -0
  57. package/src/styles/vant-overrides.css +42 -0
  58. package/src/types/api.d.ts +14 -0
  59. package/src/types/nprogress.d.ts +8 -0
  60. package/src/utils/auth-token.ts +241 -0
  61. package/src/utils/code-highlight.ts +165 -0
  62. package/src/utils/copy.ts +36 -0
  63. package/src/utils/query.ts +27 -0
  64. package/src/utils/request.ts +238 -0
  65. package/src/utils/rmb-forecast.ts +84 -0
  66. package/src/utils/toast.ts +61 -0
  67. package/src/views/article-detail/index.vue +289 -0
  68. package/src/views/article-edit/index.vue +600 -0
  69. package/src/views/articles/index.vue +293 -0
  70. package/src/views/clearing-detail/index.vue +26 -0
  71. package/src/views/dashboard/index.vue +18 -0
  72. package/src/views/foreign-position/index.vue +26 -0
  73. package/src/views/home/index.vue +213 -0
  74. package/src/views/login/index.vue +275 -0
  75. package/src/views/mine/index.vue +147 -0
  76. package/src/views/net-debit/index.vue +26 -0
  77. package/src/views/opening-reserve-estimate/index.vue +28 -0
  78. package/src/views/pbc-position/index.vue +357 -0
  79. package/src/views/position-estimate/index.vue +67 -0
  80. package/src/views/position-estimate-report/index.vue +28 -0
  81. package/src/views/rmb-position/index.vue +1013 -0
  82. package/src/views/rmb-position-create/index.vue +221 -0
  83. package/src/views/rmb-position-detail/index.vue +355 -0
  84. package/src/views/settings/index.vue +67 -0
  85. package/src/views/warning/index.vue +26 -0
  86. package/tsconfig.app.json +18 -0
  87. package/tsconfig.json +11 -0
  88. package/tsconfig.node.json +28 -0
  89. package/vite.config.ts +100 -0
@@ -0,0 +1,633 @@
1
+ /* eslint-disable */
2
+ /* prettier-ignore */
3
+ // @ts-nocheck
4
+ // noinspection JSUnusedGlobalSymbols
5
+ // Generated by unplugin-auto-import
6
+ // biome-ignore lint: disable
7
+ export {}
8
+ declare global {
9
+ const EffectScope: typeof import('vue').EffectScope
10
+ const acceptHMRUpdate: typeof import('pinia').acceptHMRUpdate
11
+ const asyncComputed: typeof import('@vueuse/core').asyncComputed
12
+ const autoResetRef: typeof import('@vueuse/core').autoResetRef
13
+ const computed: typeof import('vue').computed
14
+ const computedAsync: typeof import('@vueuse/core').computedAsync
15
+ const computedEager: typeof import('@vueuse/core').computedEager
16
+ const computedInject: typeof import('@vueuse/core').computedInject
17
+ const computedWithControl: typeof import('@vueuse/core').computedWithControl
18
+ const controlledComputed: typeof import('@vueuse/core').controlledComputed
19
+ const controlledRef: typeof import('@vueuse/core').controlledRef
20
+ const createApp: typeof import('vue').createApp
21
+ const createDisposableDirective: typeof import('@vueuse/core').createDisposableDirective
22
+ const createEventHook: typeof import('@vueuse/core').createEventHook
23
+ const createGlobalState: typeof import('@vueuse/core').createGlobalState
24
+ const createInjectionState: typeof import('@vueuse/core').createInjectionState
25
+ const createPinia: typeof import('pinia').createPinia
26
+ const createReactiveFn: typeof import('@vueuse/core').createReactiveFn
27
+ const createRef: typeof import('@vueuse/core').createRef
28
+ const createReusableTemplate: typeof import('@vueuse/core').createReusableTemplate
29
+ const createSharedComposable: typeof import('@vueuse/core').createSharedComposable
30
+ const createTemplatePromise: typeof import('@vueuse/core').createTemplatePromise
31
+ const createUnrefFn: typeof import('@vueuse/core').createUnrefFn
32
+ const customRef: typeof import('vue').customRef
33
+ const debouncedRef: typeof import('@vueuse/core').debouncedRef
34
+ const debouncedWatch: typeof import('@vueuse/core').debouncedWatch
35
+ const defineAsyncComponent: typeof import('vue').defineAsyncComponent
36
+ const defineComponent: typeof import('vue').defineComponent
37
+ const defineStore: typeof import('pinia').defineStore
38
+ const eagerComputed: typeof import('@vueuse/core').eagerComputed
39
+ const effectScope: typeof import('vue').effectScope
40
+ const extendRef: typeof import('@vueuse/core').extendRef
41
+ const getActivePinia: typeof import('pinia').getActivePinia
42
+ const getCurrentInstance: typeof import('vue').getCurrentInstance
43
+ const getCurrentScope: typeof import('vue').getCurrentScope
44
+ const getCurrentWatcher: typeof import('vue').getCurrentWatcher
45
+ const h: typeof import('vue').h
46
+ const ignorableWatch: typeof import('@vueuse/core').ignorableWatch
47
+ const inject: typeof import('vue').inject
48
+ const injectLocal: typeof import('@vueuse/core').injectLocal
49
+ const isDefined: typeof import('@vueuse/core').isDefined
50
+ const isProxy: typeof import('vue').isProxy
51
+ const isReactive: typeof import('vue').isReactive
52
+ const isReadonly: typeof import('vue').isReadonly
53
+ const isRef: typeof import('vue').isRef
54
+ const isShallow: typeof import('vue').isShallow
55
+ const makeDestructurable: typeof import('@vueuse/core').makeDestructurable
56
+ const mapActions: typeof import('pinia').mapActions
57
+ const mapGetters: typeof import('pinia').mapGetters
58
+ const mapState: typeof import('pinia').mapState
59
+ const mapStores: typeof import('pinia').mapStores
60
+ const mapWritableState: typeof import('pinia').mapWritableState
61
+ const markRaw: typeof import('vue').markRaw
62
+ const nextTick: typeof import('vue').nextTick
63
+ const onActivated: typeof import('vue').onActivated
64
+ const onBeforeMount: typeof import('vue').onBeforeMount
65
+ const onBeforeRouteLeave: typeof import('vue-router').onBeforeRouteLeave
66
+ const onBeforeRouteUpdate: typeof import('vue-router').onBeforeRouteUpdate
67
+ const onBeforeUnmount: typeof import('vue').onBeforeUnmount
68
+ const onBeforeUpdate: typeof import('vue').onBeforeUpdate
69
+ const onClickOutside: typeof import('@vueuse/core').onClickOutside
70
+ const onDeactivated: typeof import('vue').onDeactivated
71
+ const onElementRemoval: typeof import('@vueuse/core').onElementRemoval
72
+ const onErrorCaptured: typeof import('vue').onErrorCaptured
73
+ const onKeyStroke: typeof import('@vueuse/core').onKeyStroke
74
+ const onLongPress: typeof import('@vueuse/core').onLongPress
75
+ const onMounted: typeof import('vue').onMounted
76
+ const onRenderTracked: typeof import('vue').onRenderTracked
77
+ const onRenderTriggered: typeof import('vue').onRenderTriggered
78
+ const onScopeDispose: typeof import('vue').onScopeDispose
79
+ const onServerPrefetch: typeof import('vue').onServerPrefetch
80
+ const onStartTyping: typeof import('@vueuse/core').onStartTyping
81
+ const onUnmounted: typeof import('vue').onUnmounted
82
+ const onUpdated: typeof import('vue').onUpdated
83
+ const onWatcherCleanup: typeof import('vue').onWatcherCleanup
84
+ const pausableWatch: typeof import('@vueuse/core').pausableWatch
85
+ const provide: typeof import('vue').provide
86
+ const provideLocal: typeof import('@vueuse/core').provideLocal
87
+ const reactify: typeof import('@vueuse/core').reactify
88
+ const reactifyObject: typeof import('@vueuse/core').reactifyObject
89
+ const reactive: typeof import('vue').reactive
90
+ const reactiveComputed: typeof import('@vueuse/core').reactiveComputed
91
+ const reactiveOmit: typeof import('@vueuse/core').reactiveOmit
92
+ const reactivePick: typeof import('@vueuse/core').reactivePick
93
+ const readonly: typeof import('vue').readonly
94
+ const ref: typeof import('vue').ref
95
+ const refAutoReset: typeof import('@vueuse/core').refAutoReset
96
+ const refDebounced: typeof import('@vueuse/core').refDebounced
97
+ const refDefault: typeof import('@vueuse/core').refDefault
98
+ const refManualReset: typeof import('@vueuse/core').refManualReset
99
+ const refThrottled: typeof import('@vueuse/core').refThrottled
100
+ const refWithControl: typeof import('@vueuse/core').refWithControl
101
+ const resolveComponent: typeof import('vue').resolveComponent
102
+ const setActivePinia: typeof import('pinia').setActivePinia
103
+ const setMapStoreSuffix: typeof import('pinia').setMapStoreSuffix
104
+ const shallowReactive: typeof import('vue').shallowReactive
105
+ const shallowReadonly: typeof import('vue').shallowReadonly
106
+ const shallowRef: typeof import('vue').shallowRef
107
+ const showConfirmDialog: typeof import('vant').showConfirmDialog
108
+ const showDialog: typeof import('vant').showDialog
109
+ const storeToRefs: typeof import('pinia').storeToRefs
110
+ const syncRef: typeof import('@vueuse/core').syncRef
111
+ const syncRefs: typeof import('@vueuse/core').syncRefs
112
+ const templateRef: typeof import('@vueuse/core').templateRef
113
+ const throttledRef: typeof import('@vueuse/core').throttledRef
114
+ const throttledWatch: typeof import('@vueuse/core').throttledWatch
115
+ const toRaw: typeof import('vue').toRaw
116
+ const toReactive: typeof import('@vueuse/core').toReactive
117
+ const toRef: typeof import('vue').toRef
118
+ const toRefs: typeof import('vue').toRefs
119
+ const toValue: typeof import('vue').toValue
120
+ const triggerRef: typeof import('vue').triggerRef
121
+ const tryOnBeforeMount: typeof import('@vueuse/core').tryOnBeforeMount
122
+ const tryOnBeforeUnmount: typeof import('@vueuse/core').tryOnBeforeUnmount
123
+ const tryOnMounted: typeof import('@vueuse/core').tryOnMounted
124
+ const tryOnScopeDispose: typeof import('@vueuse/core').tryOnScopeDispose
125
+ const tryOnUnmounted: typeof import('@vueuse/core').tryOnUnmounted
126
+ const unref: typeof import('vue').unref
127
+ const unrefElement: typeof import('@vueuse/core').unrefElement
128
+ const until: typeof import('@vueuse/core').until
129
+ const useActiveElement: typeof import('@vueuse/core').useActiveElement
130
+ const useAnimate: typeof import('@vueuse/core').useAnimate
131
+ const useArrayDifference: typeof import('@vueuse/core').useArrayDifference
132
+ const useArrayEvery: typeof import('@vueuse/core').useArrayEvery
133
+ const useArrayFilter: typeof import('@vueuse/core').useArrayFilter
134
+ const useArrayFind: typeof import('@vueuse/core').useArrayFind
135
+ const useArrayFindIndex: typeof import('@vueuse/core').useArrayFindIndex
136
+ const useArrayFindLast: typeof import('@vueuse/core').useArrayFindLast
137
+ const useArrayIncludes: typeof import('@vueuse/core').useArrayIncludes
138
+ const useArrayJoin: typeof import('@vueuse/core').useArrayJoin
139
+ const useArrayMap: typeof import('@vueuse/core').useArrayMap
140
+ const useArrayReduce: typeof import('@vueuse/core').useArrayReduce
141
+ const useArraySome: typeof import('@vueuse/core').useArraySome
142
+ const useArrayUnique: typeof import('@vueuse/core').useArrayUnique
143
+ const useAsyncQueue: typeof import('@vueuse/core').useAsyncQueue
144
+ const useAsyncState: typeof import('@vueuse/core').useAsyncState
145
+ const useAttrs: typeof import('vue').useAttrs
146
+ const useBase64: typeof import('@vueuse/core').useBase64
147
+ const useBattery: typeof import('@vueuse/core').useBattery
148
+ const useBluetooth: typeof import('@vueuse/core').useBluetooth
149
+ const useBreakpoints: typeof import('@vueuse/core').useBreakpoints
150
+ const useBroadcastChannel: typeof import('@vueuse/core').useBroadcastChannel
151
+ const useBrowserLocation: typeof import('@vueuse/core').useBrowserLocation
152
+ const useCached: typeof import('@vueuse/core').useCached
153
+ const useClipboard: typeof import('@vueuse/core').useClipboard
154
+ const useClipboardItems: typeof import('@vueuse/core').useClipboardItems
155
+ const useCloned: typeof import('@vueuse/core').useCloned
156
+ const useColorMode: typeof import('@vueuse/core').useColorMode
157
+ const useConfirmDialog: typeof import('@vueuse/core').useConfirmDialog
158
+ const useCountdown: typeof import('@vueuse/core').useCountdown
159
+ const useCounter: typeof import('@vueuse/core').useCounter
160
+ const useCssModule: typeof import('vue').useCssModule
161
+ const useCssSupports: typeof import('@vueuse/core').useCssSupports
162
+ const useCssVar: typeof import('@vueuse/core').useCssVar
163
+ const useCssVars: typeof import('vue').useCssVars
164
+ const useCurrentElement: typeof import('@vueuse/core').useCurrentElement
165
+ const useCycleList: typeof import('@vueuse/core').useCycleList
166
+ const useDark: typeof import('@vueuse/core').useDark
167
+ const useDateFormat: typeof import('@vueuse/core').useDateFormat
168
+ const useDebounce: typeof import('@vueuse/core').useDebounce
169
+ const useDebounceFn: typeof import('@vueuse/core').useDebounceFn
170
+ const useDebouncedRefHistory: typeof import('@vueuse/core').useDebouncedRefHistory
171
+ const useDeviceMotion: typeof import('@vueuse/core').useDeviceMotion
172
+ const useDeviceOrientation: typeof import('@vueuse/core').useDeviceOrientation
173
+ const useDevicePixelRatio: typeof import('@vueuse/core').useDevicePixelRatio
174
+ const useDevicesList: typeof import('@vueuse/core').useDevicesList
175
+ const useDisplayMedia: typeof import('@vueuse/core').useDisplayMedia
176
+ const useDocumentVisibility: typeof import('@vueuse/core').useDocumentVisibility
177
+ const useDraggable: typeof import('@vueuse/core').useDraggable
178
+ const useDropZone: typeof import('@vueuse/core').useDropZone
179
+ const useElementBounding: typeof import('@vueuse/core').useElementBounding
180
+ const useElementByPoint: typeof import('@vueuse/core').useElementByPoint
181
+ const useElementHover: typeof import('@vueuse/core').useElementHover
182
+ const useElementSize: typeof import('@vueuse/core').useElementSize
183
+ const useElementVisibility: typeof import('@vueuse/core').useElementVisibility
184
+ const useEventBus: typeof import('@vueuse/core').useEventBus
185
+ const useEventListener: typeof import('@vueuse/core').useEventListener
186
+ const useEventSource: typeof import('@vueuse/core').useEventSource
187
+ const useEyeDropper: typeof import('@vueuse/core').useEyeDropper
188
+ const useFavicon: typeof import('@vueuse/core').useFavicon
189
+ const useFetch: typeof import('@vueuse/core').useFetch
190
+ const useFileDialog: typeof import('@vueuse/core').useFileDialog
191
+ const useFileSystemAccess: typeof import('@vueuse/core').useFileSystemAccess
192
+ const useFocus: typeof import('@vueuse/core').useFocus
193
+ const useFocusWithin: typeof import('@vueuse/core').useFocusWithin
194
+ const useFps: typeof import('@vueuse/core').useFps
195
+ const useFullscreen: typeof import('@vueuse/core').useFullscreen
196
+ const useGamepad: typeof import('@vueuse/core').useGamepad
197
+ const useGeolocation: typeof import('@vueuse/core').useGeolocation
198
+ const useId: typeof import('vue').useId
199
+ const useIdle: typeof import('@vueuse/core').useIdle
200
+ const useImage: typeof import('@vueuse/core').useImage
201
+ const useInfiniteScroll: typeof import('@vueuse/core').useInfiniteScroll
202
+ const useIntersectionObserver: typeof import('@vueuse/core').useIntersectionObserver
203
+ const useInterval: typeof import('@vueuse/core').useInterval
204
+ const useIntervalFn: typeof import('@vueuse/core').useIntervalFn
205
+ const useKeyModifier: typeof import('@vueuse/core').useKeyModifier
206
+ const useLastChanged: typeof import('@vueuse/core').useLastChanged
207
+ const useLink: typeof import('vue-router').useLink
208
+ const useLocalStorage: typeof import('@vueuse/core').useLocalStorage
209
+ const useMagicKeys: typeof import('@vueuse/core').useMagicKeys
210
+ const useManualRefHistory: typeof import('@vueuse/core').useManualRefHistory
211
+ const useMediaControls: typeof import('@vueuse/core').useMediaControls
212
+ const useMediaQuery: typeof import('@vueuse/core').useMediaQuery
213
+ const useMemoize: typeof import('@vueuse/core').useMemoize
214
+ const useMemory: typeof import('@vueuse/core').useMemory
215
+ const useModel: typeof import('vue').useModel
216
+ const useMounted: typeof import('@vueuse/core').useMounted
217
+ const useMouse: typeof import('@vueuse/core').useMouse
218
+ const useMouseInElement: typeof import('@vueuse/core').useMouseInElement
219
+ const useMousePressed: typeof import('@vueuse/core').useMousePressed
220
+ const useMutationObserver: typeof import('@vueuse/core').useMutationObserver
221
+ const useNavigatorLanguage: typeof import('@vueuse/core').useNavigatorLanguage
222
+ const useNetwork: typeof import('@vueuse/core').useNetwork
223
+ const useNow: typeof import('@vueuse/core').useNow
224
+ const useObjectUrl: typeof import('@vueuse/core').useObjectUrl
225
+ const useOffsetPagination: typeof import('@vueuse/core').useOffsetPagination
226
+ const useOnline: typeof import('@vueuse/core').useOnline
227
+ const usePageLeave: typeof import('@vueuse/core').usePageLeave
228
+ const useParallax: typeof import('@vueuse/core').useParallax
229
+ const useParentElement: typeof import('@vueuse/core').useParentElement
230
+ const usePerformanceObserver: typeof import('@vueuse/core').usePerformanceObserver
231
+ const usePermission: typeof import('@vueuse/core').usePermission
232
+ const usePointer: typeof import('@vueuse/core').usePointer
233
+ const usePointerLock: typeof import('@vueuse/core').usePointerLock
234
+ const usePointerSwipe: typeof import('@vueuse/core').usePointerSwipe
235
+ const usePreferredColorScheme: typeof import('@vueuse/core').usePreferredColorScheme
236
+ const usePreferredContrast: typeof import('@vueuse/core').usePreferredContrast
237
+ const usePreferredDark: typeof import('@vueuse/core').usePreferredDark
238
+ const usePreferredLanguages: typeof import('@vueuse/core').usePreferredLanguages
239
+ const usePreferredReducedMotion: typeof import('@vueuse/core').usePreferredReducedMotion
240
+ const usePreferredReducedTransparency: typeof import('@vueuse/core').usePreferredReducedTransparency
241
+ const usePrevious: typeof import('@vueuse/core').usePrevious
242
+ const useRafFn: typeof import('@vueuse/core').useRafFn
243
+ const useRefHistory: typeof import('@vueuse/core').useRefHistory
244
+ const useResizeObserver: typeof import('@vueuse/core').useResizeObserver
245
+ const useRoute: typeof import('vue-router').useRoute
246
+ const useRouter: typeof import('vue-router').useRouter
247
+ const useSSRWidth: typeof import('@vueuse/core').useSSRWidth
248
+ const useScreenOrientation: typeof import('@vueuse/core').useScreenOrientation
249
+ const useScreenSafeArea: typeof import('@vueuse/core').useScreenSafeArea
250
+ const useScriptTag: typeof import('@vueuse/core').useScriptTag
251
+ const useScroll: typeof import('@vueuse/core').useScroll
252
+ const useScrollLock: typeof import('@vueuse/core').useScrollLock
253
+ const useSessionStorage: typeof import('@vueuse/core').useSessionStorage
254
+ const useShare: typeof import('@vueuse/core').useShare
255
+ const useSlots: typeof import('vue').useSlots
256
+ const useSorted: typeof import('@vueuse/core').useSorted
257
+ const useSpeechRecognition: typeof import('@vueuse/core').useSpeechRecognition
258
+ const useSpeechSynthesis: typeof import('@vueuse/core').useSpeechSynthesis
259
+ const useStepper: typeof import('@vueuse/core').useStepper
260
+ const useStorage: typeof import('@vueuse/core').useStorage
261
+ const useStorageAsync: typeof import('@vueuse/core').useStorageAsync
262
+ const useStyleTag: typeof import('@vueuse/core').useStyleTag
263
+ const useSupported: typeof import('@vueuse/core').useSupported
264
+ const useSwipe: typeof import('@vueuse/core').useSwipe
265
+ const useTemplateRef: typeof import('vue').useTemplateRef
266
+ const useTemplateRefsList: typeof import('@vueuse/core').useTemplateRefsList
267
+ const useTextDirection: typeof import('@vueuse/core').useTextDirection
268
+ const useTextSelection: typeof import('@vueuse/core').useTextSelection
269
+ const useTextareaAutosize: typeof import('@vueuse/core').useTextareaAutosize
270
+ const useThrottle: typeof import('@vueuse/core').useThrottle
271
+ const useThrottleFn: typeof import('@vueuse/core').useThrottleFn
272
+ const useThrottledRefHistory: typeof import('@vueuse/core').useThrottledRefHistory
273
+ const useTimeAgo: typeof import('@vueuse/core').useTimeAgo
274
+ const useTimeAgoIntl: typeof import('@vueuse/core').useTimeAgoIntl
275
+ const useTimeout: typeof import('@vueuse/core').useTimeout
276
+ const useTimeoutFn: typeof import('@vueuse/core').useTimeoutFn
277
+ const useTimeoutPoll: typeof import('@vueuse/core').useTimeoutPoll
278
+ const useTimestamp: typeof import('@vueuse/core').useTimestamp
279
+ const useTitle: typeof import('@vueuse/core').useTitle
280
+ const useToNumber: typeof import('@vueuse/core').useToNumber
281
+ const useToString: typeof import('@vueuse/core').useToString
282
+ const useToggle: typeof import('@vueuse/core').useToggle
283
+ const useTransition: typeof import('@vueuse/core').useTransition
284
+ const useUrlSearchParams: typeof import('@vueuse/core').useUrlSearchParams
285
+ const useUserMedia: typeof import('@vueuse/core').useUserMedia
286
+ const useVModel: typeof import('@vueuse/core').useVModel
287
+ const useVModels: typeof import('@vueuse/core').useVModels
288
+ const useVibrate: typeof import('@vueuse/core').useVibrate
289
+ const useVirtualList: typeof import('@vueuse/core').useVirtualList
290
+ const useWakeLock: typeof import('@vueuse/core').useWakeLock
291
+ const useWebNotification: typeof import('@vueuse/core').useWebNotification
292
+ const useWebSocket: typeof import('@vueuse/core').useWebSocket
293
+ const useWebWorker: typeof import('@vueuse/core').useWebWorker
294
+ const useWebWorkerFn: typeof import('@vueuse/core').useWebWorkerFn
295
+ const useWindowFocus: typeof import('@vueuse/core').useWindowFocus
296
+ const useWindowScroll: typeof import('@vueuse/core').useWindowScroll
297
+ const useWindowSize: typeof import('@vueuse/core').useWindowSize
298
+ const watch: typeof import('vue').watch
299
+ const watchArray: typeof import('@vueuse/core').watchArray
300
+ const watchAtMost: typeof import('@vueuse/core').watchAtMost
301
+ const watchDebounced: typeof import('@vueuse/core').watchDebounced
302
+ const watchDeep: typeof import('@vueuse/core').watchDeep
303
+ const watchEffect: typeof import('vue').watchEffect
304
+ const watchIgnorable: typeof import('@vueuse/core').watchIgnorable
305
+ const watchImmediate: typeof import('@vueuse/core').watchImmediate
306
+ const watchOnce: typeof import('@vueuse/core').watchOnce
307
+ const watchPausable: typeof import('@vueuse/core').watchPausable
308
+ const watchPostEffect: typeof import('vue').watchPostEffect
309
+ const watchSyncEffect: typeof import('vue').watchSyncEffect
310
+ const watchThrottled: typeof import('@vueuse/core').watchThrottled
311
+ const watchTriggerable: typeof import('@vueuse/core').watchTriggerable
312
+ const watchWithFilter: typeof import('@vueuse/core').watchWithFilter
313
+ const whenever: typeof import('@vueuse/core').whenever
314
+ }
315
+ // for type re-export
316
+ declare global {
317
+ // @ts-ignore
318
+ export type { Component, Slot, Slots, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, ShallowRef, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
319
+ import('vue')
320
+ }
321
+
322
+ // for vue template auto import
323
+ import { UnwrapRef } from 'vue'
324
+ declare module 'vue' {
325
+ interface GlobalComponents {}
326
+ interface ComponentCustomProperties {
327
+ readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
328
+ readonly acceptHMRUpdate: UnwrapRef<typeof import('pinia')['acceptHMRUpdate']>
329
+ readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
330
+ readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
331
+ readonly computed: UnwrapRef<typeof import('vue')['computed']>
332
+ readonly computedAsync: UnwrapRef<typeof import('@vueuse/core')['computedAsync']>
333
+ readonly computedEager: UnwrapRef<typeof import('@vueuse/core')['computedEager']>
334
+ readonly computedInject: UnwrapRef<typeof import('@vueuse/core')['computedInject']>
335
+ readonly computedWithControl: UnwrapRef<typeof import('@vueuse/core')['computedWithControl']>
336
+ readonly controlledComputed: UnwrapRef<typeof import('@vueuse/core')['controlledComputed']>
337
+ readonly controlledRef: UnwrapRef<typeof import('@vueuse/core')['controlledRef']>
338
+ readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
339
+ readonly createDisposableDirective: UnwrapRef<typeof import('@vueuse/core')['createDisposableDirective']>
340
+ readonly createEventHook: UnwrapRef<typeof import('@vueuse/core')['createEventHook']>
341
+ readonly createGlobalState: UnwrapRef<typeof import('@vueuse/core')['createGlobalState']>
342
+ readonly createInjectionState: UnwrapRef<typeof import('@vueuse/core')['createInjectionState']>
343
+ readonly createPinia: UnwrapRef<typeof import('pinia')['createPinia']>
344
+ readonly createReactiveFn: UnwrapRef<typeof import('@vueuse/core')['createReactiveFn']>
345
+ readonly createRef: UnwrapRef<typeof import('@vueuse/core')['createRef']>
346
+ readonly createReusableTemplate: UnwrapRef<typeof import('@vueuse/core')['createReusableTemplate']>
347
+ readonly createSharedComposable: UnwrapRef<typeof import('@vueuse/core')['createSharedComposable']>
348
+ readonly createTemplatePromise: UnwrapRef<typeof import('@vueuse/core')['createTemplatePromise']>
349
+ readonly createUnrefFn: UnwrapRef<typeof import('@vueuse/core')['createUnrefFn']>
350
+ readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
351
+ readonly debouncedRef: UnwrapRef<typeof import('@vueuse/core')['debouncedRef']>
352
+ readonly debouncedWatch: UnwrapRef<typeof import('@vueuse/core')['debouncedWatch']>
353
+ readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
354
+ readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
355
+ readonly defineStore: UnwrapRef<typeof import('pinia')['defineStore']>
356
+ readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
357
+ readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
358
+ readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
359
+ readonly getActivePinia: UnwrapRef<typeof import('pinia')['getActivePinia']>
360
+ readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
361
+ readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
362
+ readonly getCurrentWatcher: UnwrapRef<typeof import('vue')['getCurrentWatcher']>
363
+ readonly h: UnwrapRef<typeof import('vue')['h']>
364
+ readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
365
+ readonly inject: UnwrapRef<typeof import('vue')['inject']>
366
+ readonly injectLocal: UnwrapRef<typeof import('@vueuse/core')['injectLocal']>
367
+ readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
368
+ readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
369
+ readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
370
+ readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
371
+ readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
372
+ readonly isShallow: UnwrapRef<typeof import('vue')['isShallow']>
373
+ readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
374
+ readonly mapActions: UnwrapRef<typeof import('pinia')['mapActions']>
375
+ readonly mapGetters: UnwrapRef<typeof import('pinia')['mapGetters']>
376
+ readonly mapState: UnwrapRef<typeof import('pinia')['mapState']>
377
+ readonly mapStores: UnwrapRef<typeof import('pinia')['mapStores']>
378
+ readonly mapWritableState: UnwrapRef<typeof import('pinia')['mapWritableState']>
379
+ readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
380
+ readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
381
+ readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
382
+ readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
383
+ readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
384
+ readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
385
+ readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
386
+ readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
387
+ readonly onClickOutside: UnwrapRef<typeof import('@vueuse/core')['onClickOutside']>
388
+ readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
389
+ readonly onElementRemoval: UnwrapRef<typeof import('@vueuse/core')['onElementRemoval']>
390
+ readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
391
+ readonly onKeyStroke: UnwrapRef<typeof import('@vueuse/core')['onKeyStroke']>
392
+ readonly onLongPress: UnwrapRef<typeof import('@vueuse/core')['onLongPress']>
393
+ readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
394
+ readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
395
+ readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
396
+ readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
397
+ readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
398
+ readonly onStartTyping: UnwrapRef<typeof import('@vueuse/core')['onStartTyping']>
399
+ readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
400
+ readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
401
+ readonly onWatcherCleanup: UnwrapRef<typeof import('vue')['onWatcherCleanup']>
402
+ readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
403
+ readonly provide: UnwrapRef<typeof import('vue')['provide']>
404
+ readonly provideLocal: UnwrapRef<typeof import('@vueuse/core')['provideLocal']>
405
+ readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
406
+ readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
407
+ readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
408
+ readonly reactiveComputed: UnwrapRef<typeof import('@vueuse/core')['reactiveComputed']>
409
+ readonly reactiveOmit: UnwrapRef<typeof import('@vueuse/core')['reactiveOmit']>
410
+ readonly reactivePick: UnwrapRef<typeof import('@vueuse/core')['reactivePick']>
411
+ readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
412
+ readonly ref: UnwrapRef<typeof import('vue')['ref']>
413
+ readonly refAutoReset: UnwrapRef<typeof import('@vueuse/core')['refAutoReset']>
414
+ readonly refDebounced: UnwrapRef<typeof import('@vueuse/core')['refDebounced']>
415
+ readonly refDefault: UnwrapRef<typeof import('@vueuse/core')['refDefault']>
416
+ readonly refManualReset: UnwrapRef<typeof import('@vueuse/core')['refManualReset']>
417
+ readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
418
+ readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
419
+ readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
420
+ readonly setActivePinia: UnwrapRef<typeof import('pinia')['setActivePinia']>
421
+ readonly setMapStoreSuffix: UnwrapRef<typeof import('pinia')['setMapStoreSuffix']>
422
+ readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
423
+ readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
424
+ readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
425
+ readonly showConfirmDialog: UnwrapRef<typeof import('vant')['showConfirmDialog']>
426
+ readonly showDialog: UnwrapRef<typeof import('vant')['showDialog']>
427
+ readonly storeToRefs: UnwrapRef<typeof import('pinia')['storeToRefs']>
428
+ readonly syncRef: UnwrapRef<typeof import('@vueuse/core')['syncRef']>
429
+ readonly syncRefs: UnwrapRef<typeof import('@vueuse/core')['syncRefs']>
430
+ readonly templateRef: UnwrapRef<typeof import('@vueuse/core')['templateRef']>
431
+ readonly throttledRef: UnwrapRef<typeof import('@vueuse/core')['throttledRef']>
432
+ readonly throttledWatch: UnwrapRef<typeof import('@vueuse/core')['throttledWatch']>
433
+ readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
434
+ readonly toReactive: UnwrapRef<typeof import('@vueuse/core')['toReactive']>
435
+ readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
436
+ readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
437
+ readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
438
+ readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
439
+ readonly tryOnBeforeMount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeMount']>
440
+ readonly tryOnBeforeUnmount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeUnmount']>
441
+ readonly tryOnMounted: UnwrapRef<typeof import('@vueuse/core')['tryOnMounted']>
442
+ readonly tryOnScopeDispose: UnwrapRef<typeof import('@vueuse/core')['tryOnScopeDispose']>
443
+ readonly tryOnUnmounted: UnwrapRef<typeof import('@vueuse/core')['tryOnUnmounted']>
444
+ readonly unref: UnwrapRef<typeof import('vue')['unref']>
445
+ readonly unrefElement: UnwrapRef<typeof import('@vueuse/core')['unrefElement']>
446
+ readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
447
+ readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
448
+ readonly useAnimate: UnwrapRef<typeof import('@vueuse/core')['useAnimate']>
449
+ readonly useArrayDifference: UnwrapRef<typeof import('@vueuse/core')['useArrayDifference']>
450
+ readonly useArrayEvery: UnwrapRef<typeof import('@vueuse/core')['useArrayEvery']>
451
+ readonly useArrayFilter: UnwrapRef<typeof import('@vueuse/core')['useArrayFilter']>
452
+ readonly useArrayFind: UnwrapRef<typeof import('@vueuse/core')['useArrayFind']>
453
+ readonly useArrayFindIndex: UnwrapRef<typeof import('@vueuse/core')['useArrayFindIndex']>
454
+ readonly useArrayFindLast: UnwrapRef<typeof import('@vueuse/core')['useArrayFindLast']>
455
+ readonly useArrayIncludes: UnwrapRef<typeof import('@vueuse/core')['useArrayIncludes']>
456
+ readonly useArrayJoin: UnwrapRef<typeof import('@vueuse/core')['useArrayJoin']>
457
+ readonly useArrayMap: UnwrapRef<typeof import('@vueuse/core')['useArrayMap']>
458
+ readonly useArrayReduce: UnwrapRef<typeof import('@vueuse/core')['useArrayReduce']>
459
+ readonly useArraySome: UnwrapRef<typeof import('@vueuse/core')['useArraySome']>
460
+ readonly useArrayUnique: UnwrapRef<typeof import('@vueuse/core')['useArrayUnique']>
461
+ readonly useAsyncQueue: UnwrapRef<typeof import('@vueuse/core')['useAsyncQueue']>
462
+ readonly useAsyncState: UnwrapRef<typeof import('@vueuse/core')['useAsyncState']>
463
+ readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
464
+ readonly useBase64: UnwrapRef<typeof import('@vueuse/core')['useBase64']>
465
+ readonly useBattery: UnwrapRef<typeof import('@vueuse/core')['useBattery']>
466
+ readonly useBluetooth: UnwrapRef<typeof import('@vueuse/core')['useBluetooth']>
467
+ readonly useBreakpoints: UnwrapRef<typeof import('@vueuse/core')['useBreakpoints']>
468
+ readonly useBroadcastChannel: UnwrapRef<typeof import('@vueuse/core')['useBroadcastChannel']>
469
+ readonly useBrowserLocation: UnwrapRef<typeof import('@vueuse/core')['useBrowserLocation']>
470
+ readonly useCached: UnwrapRef<typeof import('@vueuse/core')['useCached']>
471
+ readonly useClipboard: UnwrapRef<typeof import('@vueuse/core')['useClipboard']>
472
+ readonly useClipboardItems: UnwrapRef<typeof import('@vueuse/core')['useClipboardItems']>
473
+ readonly useCloned: UnwrapRef<typeof import('@vueuse/core')['useCloned']>
474
+ readonly useColorMode: UnwrapRef<typeof import('@vueuse/core')['useColorMode']>
475
+ readonly useConfirmDialog: UnwrapRef<typeof import('@vueuse/core')['useConfirmDialog']>
476
+ readonly useCountdown: UnwrapRef<typeof import('@vueuse/core')['useCountdown']>
477
+ readonly useCounter: UnwrapRef<typeof import('@vueuse/core')['useCounter']>
478
+ readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
479
+ readonly useCssSupports: UnwrapRef<typeof import('@vueuse/core')['useCssSupports']>
480
+ readonly useCssVar: UnwrapRef<typeof import('@vueuse/core')['useCssVar']>
481
+ readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
482
+ readonly useCurrentElement: UnwrapRef<typeof import('@vueuse/core')['useCurrentElement']>
483
+ readonly useCycleList: UnwrapRef<typeof import('@vueuse/core')['useCycleList']>
484
+ readonly useDark: UnwrapRef<typeof import('@vueuse/core')['useDark']>
485
+ readonly useDateFormat: UnwrapRef<typeof import('@vueuse/core')['useDateFormat']>
486
+ readonly useDebounce: UnwrapRef<typeof import('@vueuse/core')['useDebounce']>
487
+ readonly useDebounceFn: UnwrapRef<typeof import('@vueuse/core')['useDebounceFn']>
488
+ readonly useDebouncedRefHistory: UnwrapRef<typeof import('@vueuse/core')['useDebouncedRefHistory']>
489
+ readonly useDeviceMotion: UnwrapRef<typeof import('@vueuse/core')['useDeviceMotion']>
490
+ readonly useDeviceOrientation: UnwrapRef<typeof import('@vueuse/core')['useDeviceOrientation']>
491
+ readonly useDevicePixelRatio: UnwrapRef<typeof import('@vueuse/core')['useDevicePixelRatio']>
492
+ readonly useDevicesList: UnwrapRef<typeof import('@vueuse/core')['useDevicesList']>
493
+ readonly useDisplayMedia: UnwrapRef<typeof import('@vueuse/core')['useDisplayMedia']>
494
+ readonly useDocumentVisibility: UnwrapRef<typeof import('@vueuse/core')['useDocumentVisibility']>
495
+ readonly useDraggable: UnwrapRef<typeof import('@vueuse/core')['useDraggable']>
496
+ readonly useDropZone: UnwrapRef<typeof import('@vueuse/core')['useDropZone']>
497
+ readonly useElementBounding: UnwrapRef<typeof import('@vueuse/core')['useElementBounding']>
498
+ readonly useElementByPoint: UnwrapRef<typeof import('@vueuse/core')['useElementByPoint']>
499
+ readonly useElementHover: UnwrapRef<typeof import('@vueuse/core')['useElementHover']>
500
+ readonly useElementSize: UnwrapRef<typeof import('@vueuse/core')['useElementSize']>
501
+ readonly useElementVisibility: UnwrapRef<typeof import('@vueuse/core')['useElementVisibility']>
502
+ readonly useEventBus: UnwrapRef<typeof import('@vueuse/core')['useEventBus']>
503
+ readonly useEventListener: UnwrapRef<typeof import('@vueuse/core')['useEventListener']>
504
+ readonly useEventSource: UnwrapRef<typeof import('@vueuse/core')['useEventSource']>
505
+ readonly useEyeDropper: UnwrapRef<typeof import('@vueuse/core')['useEyeDropper']>
506
+ readonly useFavicon: UnwrapRef<typeof import('@vueuse/core')['useFavicon']>
507
+ readonly useFetch: UnwrapRef<typeof import('@vueuse/core')['useFetch']>
508
+ readonly useFileDialog: UnwrapRef<typeof import('@vueuse/core')['useFileDialog']>
509
+ readonly useFileSystemAccess: UnwrapRef<typeof import('@vueuse/core')['useFileSystemAccess']>
510
+ readonly useFocus: UnwrapRef<typeof import('@vueuse/core')['useFocus']>
511
+ readonly useFocusWithin: UnwrapRef<typeof import('@vueuse/core')['useFocusWithin']>
512
+ readonly useFps: UnwrapRef<typeof import('@vueuse/core')['useFps']>
513
+ readonly useFullscreen: UnwrapRef<typeof import('@vueuse/core')['useFullscreen']>
514
+ readonly useGamepad: UnwrapRef<typeof import('@vueuse/core')['useGamepad']>
515
+ readonly useGeolocation: UnwrapRef<typeof import('@vueuse/core')['useGeolocation']>
516
+ readonly useId: UnwrapRef<typeof import('vue')['useId']>
517
+ readonly useIdle: UnwrapRef<typeof import('@vueuse/core')['useIdle']>
518
+ readonly useImage: UnwrapRef<typeof import('@vueuse/core')['useImage']>
519
+ readonly useInfiniteScroll: UnwrapRef<typeof import('@vueuse/core')['useInfiniteScroll']>
520
+ readonly useIntersectionObserver: UnwrapRef<typeof import('@vueuse/core')['useIntersectionObserver']>
521
+ readonly useInterval: UnwrapRef<typeof import('@vueuse/core')['useInterval']>
522
+ readonly useIntervalFn: UnwrapRef<typeof import('@vueuse/core')['useIntervalFn']>
523
+ readonly useKeyModifier: UnwrapRef<typeof import('@vueuse/core')['useKeyModifier']>
524
+ readonly useLastChanged: UnwrapRef<typeof import('@vueuse/core')['useLastChanged']>
525
+ readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
526
+ readonly useLocalStorage: UnwrapRef<typeof import('@vueuse/core')['useLocalStorage']>
527
+ readonly useMagicKeys: UnwrapRef<typeof import('@vueuse/core')['useMagicKeys']>
528
+ readonly useManualRefHistory: UnwrapRef<typeof import('@vueuse/core')['useManualRefHistory']>
529
+ readonly useMediaControls: UnwrapRef<typeof import('@vueuse/core')['useMediaControls']>
530
+ readonly useMediaQuery: UnwrapRef<typeof import('@vueuse/core')['useMediaQuery']>
531
+ readonly useMemoize: UnwrapRef<typeof import('@vueuse/core')['useMemoize']>
532
+ readonly useMemory: UnwrapRef<typeof import('@vueuse/core')['useMemory']>
533
+ readonly useModel: UnwrapRef<typeof import('vue')['useModel']>
534
+ readonly useMounted: UnwrapRef<typeof import('@vueuse/core')['useMounted']>
535
+ readonly useMouse: UnwrapRef<typeof import('@vueuse/core')['useMouse']>
536
+ readonly useMouseInElement: UnwrapRef<typeof import('@vueuse/core')['useMouseInElement']>
537
+ readonly useMousePressed: UnwrapRef<typeof import('@vueuse/core')['useMousePressed']>
538
+ readonly useMutationObserver: UnwrapRef<typeof import('@vueuse/core')['useMutationObserver']>
539
+ readonly useNavigatorLanguage: UnwrapRef<typeof import('@vueuse/core')['useNavigatorLanguage']>
540
+ readonly useNetwork: UnwrapRef<typeof import('@vueuse/core')['useNetwork']>
541
+ readonly useNow: UnwrapRef<typeof import('@vueuse/core')['useNow']>
542
+ readonly useObjectUrl: UnwrapRef<typeof import('@vueuse/core')['useObjectUrl']>
543
+ readonly useOffsetPagination: UnwrapRef<typeof import('@vueuse/core')['useOffsetPagination']>
544
+ readonly useOnline: UnwrapRef<typeof import('@vueuse/core')['useOnline']>
545
+ readonly usePageLeave: UnwrapRef<typeof import('@vueuse/core')['usePageLeave']>
546
+ readonly useParallax: UnwrapRef<typeof import('@vueuse/core')['useParallax']>
547
+ readonly useParentElement: UnwrapRef<typeof import('@vueuse/core')['useParentElement']>
548
+ readonly usePerformanceObserver: UnwrapRef<typeof import('@vueuse/core')['usePerformanceObserver']>
549
+ readonly usePermission: UnwrapRef<typeof import('@vueuse/core')['usePermission']>
550
+ readonly usePointer: UnwrapRef<typeof import('@vueuse/core')['usePointer']>
551
+ readonly usePointerLock: UnwrapRef<typeof import('@vueuse/core')['usePointerLock']>
552
+ readonly usePointerSwipe: UnwrapRef<typeof import('@vueuse/core')['usePointerSwipe']>
553
+ readonly usePreferredColorScheme: UnwrapRef<typeof import('@vueuse/core')['usePreferredColorScheme']>
554
+ readonly usePreferredContrast: UnwrapRef<typeof import('@vueuse/core')['usePreferredContrast']>
555
+ readonly usePreferredDark: UnwrapRef<typeof import('@vueuse/core')['usePreferredDark']>
556
+ readonly usePreferredLanguages: UnwrapRef<typeof import('@vueuse/core')['usePreferredLanguages']>
557
+ readonly usePreferredReducedMotion: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedMotion']>
558
+ readonly usePreferredReducedTransparency: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedTransparency']>
559
+ readonly usePrevious: UnwrapRef<typeof import('@vueuse/core')['usePrevious']>
560
+ readonly useRafFn: UnwrapRef<typeof import('@vueuse/core')['useRafFn']>
561
+ readonly useRefHistory: UnwrapRef<typeof import('@vueuse/core')['useRefHistory']>
562
+ readonly useResizeObserver: UnwrapRef<typeof import('@vueuse/core')['useResizeObserver']>
563
+ readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
564
+ readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
565
+ readonly useSSRWidth: UnwrapRef<typeof import('@vueuse/core')['useSSRWidth']>
566
+ readonly useScreenOrientation: UnwrapRef<typeof import('@vueuse/core')['useScreenOrientation']>
567
+ readonly useScreenSafeArea: UnwrapRef<typeof import('@vueuse/core')['useScreenSafeArea']>
568
+ readonly useScriptTag: UnwrapRef<typeof import('@vueuse/core')['useScriptTag']>
569
+ readonly useScroll: UnwrapRef<typeof import('@vueuse/core')['useScroll']>
570
+ readonly useScrollLock: UnwrapRef<typeof import('@vueuse/core')['useScrollLock']>
571
+ readonly useSessionStorage: UnwrapRef<typeof import('@vueuse/core')['useSessionStorage']>
572
+ readonly useShare: UnwrapRef<typeof import('@vueuse/core')['useShare']>
573
+ readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
574
+ readonly useSorted: UnwrapRef<typeof import('@vueuse/core')['useSorted']>
575
+ readonly useSpeechRecognition: UnwrapRef<typeof import('@vueuse/core')['useSpeechRecognition']>
576
+ readonly useSpeechSynthesis: UnwrapRef<typeof import('@vueuse/core')['useSpeechSynthesis']>
577
+ readonly useStepper: UnwrapRef<typeof import('@vueuse/core')['useStepper']>
578
+ readonly useStorage: UnwrapRef<typeof import('@vueuse/core')['useStorage']>
579
+ readonly useStorageAsync: UnwrapRef<typeof import('@vueuse/core')['useStorageAsync']>
580
+ readonly useStyleTag: UnwrapRef<typeof import('@vueuse/core')['useStyleTag']>
581
+ readonly useSupported: UnwrapRef<typeof import('@vueuse/core')['useSupported']>
582
+ readonly useSwipe: UnwrapRef<typeof import('@vueuse/core')['useSwipe']>
583
+ readonly useTemplateRef: UnwrapRef<typeof import('vue')['useTemplateRef']>
584
+ readonly useTemplateRefsList: UnwrapRef<typeof import('@vueuse/core')['useTemplateRefsList']>
585
+ readonly useTextDirection: UnwrapRef<typeof import('@vueuse/core')['useTextDirection']>
586
+ readonly useTextSelection: UnwrapRef<typeof import('@vueuse/core')['useTextSelection']>
587
+ readonly useTextareaAutosize: UnwrapRef<typeof import('@vueuse/core')['useTextareaAutosize']>
588
+ readonly useThrottle: UnwrapRef<typeof import('@vueuse/core')['useThrottle']>
589
+ readonly useThrottleFn: UnwrapRef<typeof import('@vueuse/core')['useThrottleFn']>
590
+ readonly useThrottledRefHistory: UnwrapRef<typeof import('@vueuse/core')['useThrottledRefHistory']>
591
+ readonly useTimeAgo: UnwrapRef<typeof import('@vueuse/core')['useTimeAgo']>
592
+ readonly useTimeAgoIntl: UnwrapRef<typeof import('@vueuse/core')['useTimeAgoIntl']>
593
+ readonly useTimeout: UnwrapRef<typeof import('@vueuse/core')['useTimeout']>
594
+ readonly useTimeoutFn: UnwrapRef<typeof import('@vueuse/core')['useTimeoutFn']>
595
+ readonly useTimeoutPoll: UnwrapRef<typeof import('@vueuse/core')['useTimeoutPoll']>
596
+ readonly useTimestamp: UnwrapRef<typeof import('@vueuse/core')['useTimestamp']>
597
+ readonly useTitle: UnwrapRef<typeof import('@vueuse/core')['useTitle']>
598
+ readonly useToNumber: UnwrapRef<typeof import('@vueuse/core')['useToNumber']>
599
+ readonly useToString: UnwrapRef<typeof import('@vueuse/core')['useToString']>
600
+ readonly useToggle: UnwrapRef<typeof import('@vueuse/core')['useToggle']>
601
+ readonly useTransition: UnwrapRef<typeof import('@vueuse/core')['useTransition']>
602
+ readonly useUrlSearchParams: UnwrapRef<typeof import('@vueuse/core')['useUrlSearchParams']>
603
+ readonly useUserMedia: UnwrapRef<typeof import('@vueuse/core')['useUserMedia']>
604
+ readonly useVModel: UnwrapRef<typeof import('@vueuse/core')['useVModel']>
605
+ readonly useVModels: UnwrapRef<typeof import('@vueuse/core')['useVModels']>
606
+ readonly useVibrate: UnwrapRef<typeof import('@vueuse/core')['useVibrate']>
607
+ readonly useVirtualList: UnwrapRef<typeof import('@vueuse/core')['useVirtualList']>
608
+ readonly useWakeLock: UnwrapRef<typeof import('@vueuse/core')['useWakeLock']>
609
+ readonly useWebNotification: UnwrapRef<typeof import('@vueuse/core')['useWebNotification']>
610
+ readonly useWebSocket: UnwrapRef<typeof import('@vueuse/core')['useWebSocket']>
611
+ readonly useWebWorker: UnwrapRef<typeof import('@vueuse/core')['useWebWorker']>
612
+ readonly useWebWorkerFn: UnwrapRef<typeof import('@vueuse/core')['useWebWorkerFn']>
613
+ readonly useWindowFocus: UnwrapRef<typeof import('@vueuse/core')['useWindowFocus']>
614
+ readonly useWindowScroll: UnwrapRef<typeof import('@vueuse/core')['useWindowScroll']>
615
+ readonly useWindowSize: UnwrapRef<typeof import('@vueuse/core')['useWindowSize']>
616
+ readonly watch: UnwrapRef<typeof import('vue')['watch']>
617
+ readonly watchArray: UnwrapRef<typeof import('@vueuse/core')['watchArray']>
618
+ readonly watchAtMost: UnwrapRef<typeof import('@vueuse/core')['watchAtMost']>
619
+ readonly watchDebounced: UnwrapRef<typeof import('@vueuse/core')['watchDebounced']>
620
+ readonly watchDeep: UnwrapRef<typeof import('@vueuse/core')['watchDeep']>
621
+ readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
622
+ readonly watchIgnorable: UnwrapRef<typeof import('@vueuse/core')['watchIgnorable']>
623
+ readonly watchImmediate: UnwrapRef<typeof import('@vueuse/core')['watchImmediate']>
624
+ readonly watchOnce: UnwrapRef<typeof import('@vueuse/core')['watchOnce']>
625
+ readonly watchPausable: UnwrapRef<typeof import('@vueuse/core')['watchPausable']>
626
+ readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
627
+ readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
628
+ readonly watchThrottled: UnwrapRef<typeof import('@vueuse/core')['watchThrottled']>
629
+ readonly watchTriggerable: UnwrapRef<typeof import('@vueuse/core')['watchTriggerable']>
630
+ readonly watchWithFilter: UnwrapRef<typeof import('@vueuse/core')['watchWithFilter']>
631
+ readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
632
+ }
633
+ }