@@ -37,6 +37,7 @@ declare global {
37
37
const h : typeof import ( 'vue' ) [ 'h' ]
38
38
const ignorableWatch : typeof import ( '@vueuse/core' ) [ 'ignorableWatch' ]
39
39
const inject : typeof import ( 'vue' ) [ 'inject' ]
40
+ const injectLocal : typeof import ( '@vueuse/core' ) [ 'injectLocal' ]
40
41
const isDark : typeof import ( './src/composables/dark' ) [ 'isDark' ]
41
42
const isDefined : typeof import ( '@vueuse/core' ) [ 'isDefined' ]
42
43
const isProxy : typeof import ( 'vue' ) [ 'isProxy' ]
@@ -67,6 +68,7 @@ declare global {
67
68
const onUpdated : typeof import ( 'vue' ) [ 'onUpdated' ]
68
69
const pausableWatch : typeof import ( '@vueuse/core' ) [ 'pausableWatch' ]
69
70
const provide : typeof import ( 'vue' ) [ 'provide' ]
71
+ const provideLocal : typeof import ( '@vueuse/core' ) [ 'provideLocal' ]
70
72
const reactify : typeof import ( '@vueuse/core' ) [ 'reactify' ]
71
73
const reactifyObject : typeof import ( '@vueuse/core' ) [ 'reactifyObject' ]
72
74
const reactive : typeof import ( 'vue' ) [ 'reactive' ]
@@ -324,6 +326,7 @@ declare module 'vue' {
324
326
readonly h : UnwrapRef < typeof import ( 'vue' ) [ 'h' ] >
325
327
readonly ignorableWatch : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'ignorableWatch' ] >
326
328
readonly inject : UnwrapRef < typeof import ( 'vue' ) [ 'inject' ] >
329
+ readonly injectLocal : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'injectLocal' ] >
327
330
readonly isDark : UnwrapRef < typeof import ( './src/composables/dark' ) [ 'isDark' ] >
328
331
readonly isDefined : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'isDefined' ] >
329
332
readonly isProxy : UnwrapRef < typeof import ( 'vue' ) [ 'isProxy' ] >
@@ -354,6 +357,7 @@ declare module 'vue' {
354
357
readonly onUpdated : UnwrapRef < typeof import ( 'vue' ) [ 'onUpdated' ] >
355
358
readonly pausableWatch : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'pausableWatch' ] >
356
359
readonly provide : UnwrapRef < typeof import ( 'vue' ) [ 'provide' ] >
360
+ readonly provideLocal : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'provideLocal' ] >
357
361
readonly reactify : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'reactify' ] >
358
362
readonly reactifyObject : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'reactifyObject' ] >
359
363
readonly reactive : UnwrapRef < typeof import ( 'vue' ) [ 'reactive' ] >
@@ -605,6 +609,7 @@ declare module '@vue/runtime-core' {
605
609
readonly h : UnwrapRef < typeof import ( 'vue' ) [ 'h' ] >
606
610
readonly ignorableWatch : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'ignorableWatch' ] >
607
611
readonly inject : UnwrapRef < typeof import ( 'vue' ) [ 'inject' ] >
612
+ readonly injectLocal : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'injectLocal' ] >
608
613
readonly isDark : UnwrapRef < typeof import ( './src/composables/dark' ) [ 'isDark' ] >
609
614
readonly isDefined : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'isDefined' ] >
610
615
readonly isProxy : UnwrapRef < typeof import ( 'vue' ) [ 'isProxy' ] >
@@ -635,6 +640,7 @@ declare module '@vue/runtime-core' {
635
640
readonly onUpdated : UnwrapRef < typeof import ( 'vue' ) [ 'onUpdated' ] >
636
641
readonly pausableWatch : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'pausableWatch' ] >
637
642
readonly provide : UnwrapRef < typeof import ( 'vue' ) [ 'provide' ] >
643
+ readonly provideLocal : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'provideLocal' ] >
638
644
readonly reactify : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'reactify' ] >
639
645
readonly reactifyObject : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'reactifyObject' ] >
640
646
readonly reactive : UnwrapRef < typeof import ( 'vue' ) [ 'reactive' ] >
0 commit comments