@@ -19,7 +19,9 @@ declare global {
19
19
const createGlobalState : typeof import ( '@vueuse/core' ) [ 'createGlobalState' ]
20
20
const createInjectionState : typeof import ( '@vueuse/core' ) [ 'createInjectionState' ]
21
21
const createReactiveFn : typeof import ( '@vueuse/core' ) [ 'createReactiveFn' ]
22
+ const createReusableTemplate : typeof import ( '@vueuse/core' ) [ 'createReusableTemplate' ]
22
23
const createSharedComposable : typeof import ( '@vueuse/core' ) [ 'createSharedComposable' ]
24
+ const createTemplatePromise : typeof import ( '@vueuse/core' ) [ 'createTemplatePromise' ]
23
25
const createUnrefFn : typeof import ( '@vueuse/core' ) [ 'createUnrefFn' ]
24
26
const customRef : typeof import ( 'vue' ) [ 'customRef' ]
25
27
const debouncedRef : typeof import ( '@vueuse/core' ) [ 'debouncedRef' ]
@@ -89,8 +91,9 @@ declare global {
89
91
const throttledWatch : typeof import ( '@vueuse/core' ) [ 'throttledWatch' ]
90
92
const toRaw : typeof import ( 'vue' ) [ 'toRaw' ]
91
93
const toReactive : typeof import ( '@vueuse/core' ) [ 'toReactive' ]
92
- const toRef : typeof import ( 'vue ' ) [ 'toRef' ]
94
+ const toRef : typeof import ( '@vueuse/core ' ) [ 'toRef' ]
93
95
const toRefs : typeof import ( 'vue' ) [ 'toRefs' ]
96
+ const toValue : typeof import ( '@vueuse/core' ) [ 'toValue' ]
94
97
const triggerRef : typeof import ( 'vue' ) [ 'triggerRef' ]
95
98
const tryOnBeforeMount : typeof import ( '@vueuse/core' ) [ 'tryOnBeforeMount' ]
96
99
const tryOnBeforeUnmount : typeof import ( '@vueuse/core' ) [ 'tryOnBeforeUnmount' ]
@@ -101,11 +104,14 @@ declare global {
101
104
const unrefElement : typeof import ( '@vueuse/core' ) [ 'unrefElement' ]
102
105
const until : typeof import ( '@vueuse/core' ) [ 'until' ]
103
106
const useActiveElement : typeof import ( '@vueuse/core' ) [ 'useActiveElement' ]
107
+ const useAnimate : typeof import ( '@vueuse/core' ) [ 'useAnimate' ]
108
+ const useArrayDifference : typeof import ( '@vueuse/core' ) [ 'useArrayDifference' ]
104
109
const useArrayEvery : typeof import ( '@vueuse/core' ) [ 'useArrayEvery' ]
105
110
const useArrayFilter : typeof import ( '@vueuse/core' ) [ 'useArrayFilter' ]
106
111
const useArrayFind : typeof import ( '@vueuse/core' ) [ 'useArrayFind' ]
107
112
const useArrayFindIndex : typeof import ( '@vueuse/core' ) [ 'useArrayFindIndex' ]
108
113
const useArrayFindLast : typeof import ( '@vueuse/core' ) [ 'useArrayFindLast' ]
114
+ const useArrayIncludes : typeof import ( '@vueuse/core' ) [ 'useArrayIncludes' ]
109
115
const useArrayJoin : typeof import ( '@vueuse/core' ) [ 'useArrayJoin' ]
110
116
const useArrayMap : typeof import ( '@vueuse/core' ) [ 'useArrayMap' ]
111
117
const useArrayReduce : typeof import ( '@vueuse/core' ) [ 'useArrayReduce' ]
@@ -192,6 +198,8 @@ declare global {
192
198
const useOnline : typeof import ( '@vueuse/core' ) [ 'useOnline' ]
193
199
const usePageLeave : typeof import ( '@vueuse/core' ) [ 'usePageLeave' ]
194
200
const useParallax : typeof import ( '@vueuse/core' ) [ 'useParallax' ]
201
+ const useParentElement : typeof import ( '@vueuse/core' ) [ 'useParentElement' ]
202
+ const usePerformanceObserver : typeof import ( '@vueuse/core' ) [ 'usePerformanceObserver' ]
195
203
const usePermission : typeof import ( '@vueuse/core' ) [ 'usePermission' ]
196
204
const usePointer : typeof import ( '@vueuse/core' ) [ 'usePointer' ]
197
205
const usePointerLock : typeof import ( '@vueuse/core' ) [ 'usePointerLock' ]
@@ -259,8 +267,10 @@ declare global {
259
267
const watchArray : typeof import ( '@vueuse/core' ) [ 'watchArray' ]
260
268
const watchAtMost : typeof import ( '@vueuse/core' ) [ 'watchAtMost' ]
261
269
const watchDebounced : typeof import ( '@vueuse/core' ) [ 'watchDebounced' ]
270
+ const watchDeep : typeof import ( '@vueuse/core' ) [ 'watchDeep' ]
262
271
const watchEffect : typeof import ( 'vue' ) [ 'watchEffect' ]
263
272
const watchIgnorable : typeof import ( '@vueuse/core' ) [ 'watchIgnorable' ]
273
+ const watchImmediate : typeof import ( '@vueuse/core' ) [ 'watchImmediate' ]
264
274
const watchOnce : typeof import ( '@vueuse/core' ) [ 'watchOnce' ]
265
275
const watchPausable : typeof import ( '@vueuse/core' ) [ 'watchPausable' ]
266
276
const watchPostEffect : typeof import ( 'vue' ) [ 'watchPostEffect' ]
0 commit comments