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