@@ -73,6 +73,7 @@ declare global {
7373 const refThrottled : typeof import ( '@vueuse/core' ) [ 'refThrottled' ]
7474 const refWithControl : typeof import ( '@vueuse/core' ) [ 'refWithControl' ]
7575 const resolveComponent : typeof import ( 'vue' ) [ 'resolveComponent' ]
76+ const resolveDirective : typeof import ( 'vue' ) [ 'resolveDirective' ]
7677 const resolveRef : typeof import ( '@vueuse/core' ) [ 'resolveRef' ]
7778 const resolveUnref : typeof import ( '@vueuse/core' ) [ 'resolveUnref' ]
7879 const shallowReactive : typeof import ( 'vue' ) [ 'shallowReactive' ]
@@ -117,6 +118,7 @@ declare global {
117118 const useBrowserLocation : typeof import ( '@vueuse/core' ) [ 'useBrowserLocation' ]
118119 const useCached : typeof import ( '@vueuse/core' ) [ 'useCached' ]
119120 const useClipboard : typeof import ( '@vueuse/core' ) [ 'useClipboard' ]
121+ const useCloned : typeof import ( '@vueuse/core' ) [ 'useCloned' ]
120122 const useColorMode : typeof import ( '@vueuse/core' ) [ 'useColorMode' ]
121123 const useConfirmDialog : typeof import ( '@vueuse/core' ) [ 'useConfirmDialog' ]
122124 const useCounter : typeof import ( '@vueuse/core' ) [ 'useCounter' ]
@@ -189,6 +191,7 @@ declare global {
189191 const usePointer : typeof import ( '@vueuse/core' ) [ 'usePointer' ]
190192 const usePointerSwipe : typeof import ( '@vueuse/core' ) [ 'usePointerSwipe' ]
191193 const usePreferredColorScheme : typeof import ( '@vueuse/core' ) [ 'usePreferredColorScheme' ]
194+ const usePreferredContrast : typeof import ( '@vueuse/core' ) [ 'usePreferredContrast' ]
192195 const usePreferredDark : typeof import ( '@vueuse/core' ) [ 'usePreferredDark' ]
193196 const usePreferredLanguages : typeof import ( '@vueuse/core' ) [ 'usePreferredLanguages' ]
194197 const usePreferredReducedMotion : typeof import ( '@vueuse/core' ) [ 'usePreferredReducedMotion' ]
@@ -203,6 +206,7 @@ declare global {
203206 const useSessionStorage : typeof import ( '@vueuse/core' ) [ 'useSessionStorage' ]
204207 const useShare : typeof import ( '@vueuse/core' ) [ 'useShare' ]
205208 const useSlots : typeof import ( 'vue' ) [ 'useSlots' ]
209+ const useSorted : typeof import ( '@vueuse/core' ) [ 'useSorted' ]
206210 const useSpeechRecognition : typeof import ( '@vueuse/core' ) [ 'useSpeechRecognition' ]
207211 const useSpeechSynthesis : typeof import ( '@vueuse/core' ) [ 'useSpeechSynthesis' ]
208212 const useStepper : typeof import ( '@vueuse/core' ) [ 'useStepper' ]
@@ -259,7 +263,7 @@ declare global {
259263}
260264// for vue template auto import
261265import { UnwrapRef } from 'vue'
262- declare module '@ vue/runtime-core ' {
266+ declare module 'vue' {
263267 interface ComponentCustomProperties {
264268 readonly EffectScope : UnwrapRef < typeof import ( 'vue' ) [ 'EffectScope' ] >
265269 readonly asyncComputed : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'asyncComputed' ] >
@@ -333,6 +337,7 @@ declare module '@vue/runtime-core' {
333337 readonly refThrottled : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'refThrottled' ] >
334338 readonly refWithControl : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'refWithControl' ] >
335339 readonly resolveComponent : UnwrapRef < typeof import ( 'vue' ) [ 'resolveComponent' ] >
340+ readonly resolveDirective : UnwrapRef < typeof import ( 'vue' ) [ 'resolveDirective' ] >
336341 readonly resolveRef : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'resolveRef' ] >
337342 readonly resolveUnref : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'resolveUnref' ] >
338343 readonly shallowReactive : UnwrapRef < typeof import ( 'vue' ) [ 'shallowReactive' ] >
@@ -377,6 +382,7 @@ declare module '@vue/runtime-core' {
377382 readonly useBrowserLocation : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useBrowserLocation' ] >
378383 readonly useCached : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useCached' ] >
379384 readonly useClipboard : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useClipboard' ] >
385+ readonly useCloned : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useCloned' ] >
380386 readonly useColorMode : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useColorMode' ] >
381387 readonly useConfirmDialog : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useConfirmDialog' ] >
382388 readonly useCounter : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useCounter' ] >
@@ -449,6 +455,7 @@ declare module '@vue/runtime-core' {
449455 readonly usePointer : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePointer' ] >
450456 readonly usePointerSwipe : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePointerSwipe' ] >
451457 readonly usePreferredColorScheme : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredColorScheme' ] >
458+ readonly usePreferredContrast : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredContrast' ] >
452459 readonly usePreferredDark : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredDark' ] >
453460 readonly usePreferredLanguages : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredLanguages' ] >
454461 readonly usePreferredReducedMotion : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredReducedMotion' ] >
@@ -463,6 +470,7 @@ declare module '@vue/runtime-core' {
463470 readonly useSessionStorage : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useSessionStorage' ] >
464471 readonly useShare : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useShare' ] >
465472 readonly useSlots : UnwrapRef < typeof import ( 'vue' ) [ 'useSlots' ] >
473+ readonly useSorted : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useSorted' ] >
466474 readonly useSpeechRecognition : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useSpeechRecognition' ] >
467475 readonly useSpeechSynthesis : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useSpeechSynthesis' ] >
468476 readonly useStepper : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useStepper' ] >
0 commit comments