@@ -36,6 +36,7 @@ declare global {
36
36
const h : typeof import ( 'vue' ) [ 'h' ]
37
37
const ignorableWatch : typeof import ( '@vueuse/core' ) [ 'ignorableWatch' ]
38
38
const inject : typeof import ( 'vue' ) [ 'inject' ]
39
+ const injectLocal : typeof import ( '@vueuse/core' ) [ 'injectLocal' ]
39
40
const isDefined : typeof import ( '@vueuse/core' ) [ 'isDefined' ]
40
41
const isProxy : typeof import ( 'vue' ) [ 'isProxy' ]
41
42
const isReactive : typeof import ( 'vue' ) [ 'isReactive' ]
@@ -65,6 +66,7 @@ declare global {
65
66
const onUpdated : typeof import ( 'vue' ) [ 'onUpdated' ]
66
67
const pausableWatch : typeof import ( '@vueuse/core' ) [ 'pausableWatch' ]
67
68
const provide : typeof import ( 'vue' ) [ 'provide' ]
69
+ const provideLocal : typeof import ( '@vueuse/core' ) [ 'provideLocal' ]
68
70
const reactify : typeof import ( '@vueuse/core' ) [ 'reactify' ]
69
71
const reactifyObject : typeof import ( '@vueuse/core' ) [ 'reactifyObject' ]
70
72
const reactive : typeof import ( 'vue' ) [ 'reactive' ]
@@ -128,6 +130,7 @@ declare global {
128
130
const useBrowserLocation : typeof import ( '@vueuse/core' ) [ 'useBrowserLocation' ]
129
131
const useCached : typeof import ( '@vueuse/core' ) [ 'useCached' ]
130
132
const useClipboard : typeof import ( '@vueuse/core' ) [ 'useClipboard' ]
133
+ const useClipboardItems : typeof import ( '@vueuse/core' ) [ 'useClipboardItems' ]
131
134
const useCloned : typeof import ( '@vueuse/core' ) [ 'useCloned' ]
132
135
const useColorMode : typeof import ( '@vueuse/core' ) [ 'useColorMode' ]
133
136
const useConfirmDialog : typeof import ( '@vueuse/core' ) [ 'useConfirmDialog' ]
@@ -326,6 +329,7 @@ declare module 'vue' {
326
329
readonly h : UnwrapRef < typeof import ( 'vue' ) [ 'h' ] >
327
330
readonly ignorableWatch : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'ignorableWatch' ] >
328
331
readonly inject : UnwrapRef < typeof import ( 'vue' ) [ 'inject' ] >
332
+ readonly injectLocal : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'injectLocal' ] >
329
333
readonly isDefined : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'isDefined' ] >
330
334
readonly isProxy : UnwrapRef < typeof import ( 'vue' ) [ 'isProxy' ] >
331
335
readonly isReactive : UnwrapRef < typeof import ( 'vue' ) [ 'isReactive' ] >
@@ -355,6 +359,7 @@ declare module 'vue' {
355
359
readonly onUpdated : UnwrapRef < typeof import ( 'vue' ) [ 'onUpdated' ] >
356
360
readonly pausableWatch : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'pausableWatch' ] >
357
361
readonly provide : UnwrapRef < typeof import ( 'vue' ) [ 'provide' ] >
362
+ readonly provideLocal : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'provideLocal' ] >
358
363
readonly reactify : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'reactify' ] >
359
364
readonly reactifyObject : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'reactifyObject' ] >
360
365
readonly reactive : UnwrapRef < typeof import ( 'vue' ) [ 'reactive' ] >
@@ -418,6 +423,7 @@ declare module 'vue' {
418
423
readonly useBrowserLocation : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useBrowserLocation' ] >
419
424
readonly useCached : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useCached' ] >
420
425
readonly useClipboard : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useClipboard' ] >
426
+ readonly useClipboardItems : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useClipboardItems' ] >
421
427
readonly useCloned : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useCloned' ] >
422
428
readonly useColorMode : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useColorMode' ] >
423
429
readonly useConfirmDialog : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useConfirmDialog' ] >
@@ -610,6 +616,7 @@ declare module '@vue/runtime-core' {
610
616
readonly h : UnwrapRef < typeof import ( 'vue' ) [ 'h' ] >
611
617
readonly ignorableWatch : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'ignorableWatch' ] >
612
618
readonly inject : UnwrapRef < typeof import ( 'vue' ) [ 'inject' ] >
619
+ readonly injectLocal : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'injectLocal' ] >
613
620
readonly isDefined : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'isDefined' ] >
614
621
readonly isProxy : UnwrapRef < typeof import ( 'vue' ) [ 'isProxy' ] >
615
622
readonly isReactive : UnwrapRef < typeof import ( 'vue' ) [ 'isReactive' ] >
@@ -639,6 +646,7 @@ declare module '@vue/runtime-core' {
639
646
readonly onUpdated : UnwrapRef < typeof import ( 'vue' ) [ 'onUpdated' ] >
640
647
readonly pausableWatch : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'pausableWatch' ] >
641
648
readonly provide : UnwrapRef < typeof import ( 'vue' ) [ 'provide' ] >
649
+ readonly provideLocal : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'provideLocal' ] >
642
650
readonly reactify : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'reactify' ] >
643
651
readonly reactifyObject : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'reactifyObject' ] >
644
652
readonly reactive : UnwrapRef < typeof import ( 'vue' ) [ 'reactive' ] >
@@ -702,6 +710,7 @@ declare module '@vue/runtime-core' {
702
710
readonly useBrowserLocation : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useBrowserLocation' ] >
703
711
readonly useCached : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useCached' ] >
704
712
readonly useClipboard : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useClipboard' ] >
713
+ readonly useClipboardItems : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useClipboardItems' ] >
705
714
readonly useCloned : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useCloned' ] >
706
715
readonly useColorMode : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useColorMode' ] >
707
716
readonly useConfirmDialog : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useConfirmDialog' ] >
0 commit comments