@@ -83,6 +83,7 @@ declare global {
83
83
const refThrottled : typeof import ( '@vueuse/core' ) [ 'refThrottled' ]
84
84
const refWithControl : typeof import ( '@vueuse/core' ) [ 'refWithControl' ]
85
85
const resolveComponent : typeof import ( 'vue' ) [ 'resolveComponent' ]
86
+ const resolveDirective : typeof import ( 'vue' ) [ 'resolveDirective' ]
86
87
const resolveRef : typeof import ( '@vueuse/core' ) [ 'resolveRef' ]
87
88
const resolveUnref : typeof import ( '@vueuse/core' ) [ 'resolveUnref' ]
88
89
const shallowReactive : typeof import ( 'vue' ) [ 'shallowReactive' ]
@@ -111,10 +112,12 @@ declare global {
111
112
const useArrayFilter : typeof import ( '@vueuse/core' ) [ 'useArrayFilter' ]
112
113
const useArrayFind : typeof import ( '@vueuse/core' ) [ 'useArrayFind' ]
113
114
const useArrayFindIndex : typeof import ( '@vueuse/core' ) [ 'useArrayFindIndex' ]
115
+ const useArrayFindLast : typeof import ( '@vueuse/core' ) [ 'useArrayFindLast' ]
114
116
const useArrayJoin : typeof import ( '@vueuse/core' ) [ 'useArrayJoin' ]
115
117
const useArrayMap : typeof import ( '@vueuse/core' ) [ 'useArrayMap' ]
116
118
const useArrayReduce : typeof import ( '@vueuse/core' ) [ 'useArrayReduce' ]
117
119
const useArraySome : typeof import ( '@vueuse/core' ) [ 'useArraySome' ]
120
+ const useArrayUnique : typeof import ( '@vueuse/core' ) [ 'useArrayUnique' ]
118
121
const useAsyncQueue : typeof import ( '@vueuse/core' ) [ 'useAsyncQueue' ]
119
122
const useAsyncState : typeof import ( '@vueuse/core' ) [ 'useAsyncState' ]
120
123
const useAttrs : typeof import ( 'vue' ) [ 'useAttrs' ]
@@ -200,12 +203,14 @@ declare global {
200
203
const useParallax : typeof import ( '@vueuse/core' ) [ 'useParallax' ]
201
204
const usePermission : typeof import ( '@vueuse/core' ) [ 'usePermission' ]
202
205
const usePointer : typeof import ( '@vueuse/core' ) [ 'usePointer' ]
206
+ const usePointerLock : typeof import ( '@vueuse/core' ) [ 'usePointerLock' ]
203
207
const usePointerSwipe : typeof import ( '@vueuse/core' ) [ 'usePointerSwipe' ]
204
208
const usePreferredColorScheme : typeof import ( '@vueuse/core' ) [ 'usePreferredColorScheme' ]
205
209
const usePreferredContrast : typeof import ( '@vueuse/core' ) [ 'usePreferredContrast' ]
206
210
const usePreferredDark : typeof import ( '@vueuse/core' ) [ 'usePreferredDark' ]
207
211
const usePreferredLanguages : typeof import ( '@vueuse/core' ) [ 'usePreferredLanguages' ]
208
212
const usePreferredReducedMotion : typeof import ( '@vueuse/core' ) [ 'usePreferredReducedMotion' ]
213
+ const usePrevious : typeof import ( '@vueuse/core' ) [ 'usePrevious' ]
209
214
const useRafFn : typeof import ( '@vueuse/core' ) [ 'useRafFn' ]
210
215
const useRefHistory : typeof import ( '@vueuse/core' ) [ 'useRefHistory' ]
211
216
const useResizeObserver : typeof import ( '@vueuse/core' ) [ 'useResizeObserver' ]
@@ -274,7 +279,7 @@ declare global {
274
279
}
275
280
// for vue template auto import
276
281
import { UnwrapRef } from 'vue'
277
- declare module '@ vue/runtime-core ' {
282
+ declare module 'vue' {
278
283
interface ComponentCustomProperties {
279
284
readonly $$ : UnwrapRef < typeof import ( 'vue/macros' ) [ '$$' ] >
280
285
readonly $ : UnwrapRef < typeof import ( 'vue/macros' ) [ '$' ] >
@@ -358,6 +363,7 @@ declare module '@vue/runtime-core' {
358
363
readonly refThrottled : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'refThrottled' ] >
359
364
readonly refWithControl : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'refWithControl' ] >
360
365
readonly resolveComponent : UnwrapRef < typeof import ( 'vue' ) [ 'resolveComponent' ] >
366
+ readonly resolveDirective : UnwrapRef < typeof import ( 'vue' ) [ 'resolveDirective' ] >
361
367
readonly resolveRef : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'resolveRef' ] >
362
368
readonly resolveUnref : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'resolveUnref' ] >
363
369
readonly shallowReactive : UnwrapRef < typeof import ( 'vue' ) [ 'shallowReactive' ] >
@@ -386,10 +392,12 @@ declare module '@vue/runtime-core' {
386
392
readonly useArrayFilter : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useArrayFilter' ] >
387
393
readonly useArrayFind : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useArrayFind' ] >
388
394
readonly useArrayFindIndex : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useArrayFindIndex' ] >
395
+ readonly useArrayFindLast : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useArrayFindLast' ] >
389
396
readonly useArrayJoin : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useArrayJoin' ] >
390
397
readonly useArrayMap : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useArrayMap' ] >
391
398
readonly useArrayReduce : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useArrayReduce' ] >
392
399
readonly useArraySome : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useArraySome' ] >
400
+ readonly useArrayUnique : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useArrayUnique' ] >
393
401
readonly useAsyncQueue : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useAsyncQueue' ] >
394
402
readonly useAsyncState : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useAsyncState' ] >
395
403
readonly useAttrs : UnwrapRef < typeof import ( 'vue' ) [ 'useAttrs' ] >
@@ -475,12 +483,14 @@ declare module '@vue/runtime-core' {
475
483
readonly useParallax : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useParallax' ] >
476
484
readonly usePermission : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePermission' ] >
477
485
readonly usePointer : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePointer' ] >
486
+ readonly usePointerLock : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePointerLock' ] >
478
487
readonly usePointerSwipe : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePointerSwipe' ] >
479
488
readonly usePreferredColorScheme : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredColorScheme' ] >
480
489
readonly usePreferredContrast : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredContrast' ] >
481
490
readonly usePreferredDark : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredDark' ] >
482
491
readonly usePreferredLanguages : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredLanguages' ] >
483
492
readonly usePreferredReducedMotion : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredReducedMotion' ] >
493
+ readonly usePrevious : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePrevious' ] >
484
494
readonly useRafFn : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useRafFn' ] >
485
495
readonly useRefHistory : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useRefHistory' ] >
486
496
readonly useResizeObserver : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useResizeObserver' ] >
0 commit comments