@@ -79,6 +79,7 @@ declare global {
79
79
const onBeforeUpdate : typeof import ( 'vue' ) [ 'onBeforeUpdate' ]
80
80
const onClickOutside : typeof import ( '@vueuse/core' ) [ 'onClickOutside' ]
81
81
const onDeactivated : typeof import ( 'vue' ) [ 'onDeactivated' ]
82
+ const onElementRemoval : typeof import ( '@vueuse/core' ) [ 'onElementRemoval' ]
82
83
const onErrorCaptured : typeof import ( 'vue' ) [ 'onErrorCaptured' ]
83
84
const onKeyStroke : typeof import ( '@vueuse/core' ) [ 'onKeyStroke' ]
84
85
const onLongPress : typeof import ( '@vueuse/core' ) [ 'onLongPress' ]
@@ -168,6 +169,7 @@ declare global {
168
169
const useCloned : typeof import ( '@vueuse/core' ) [ 'useCloned' ]
169
170
const useColorMode : typeof import ( '@vueuse/core' ) [ 'useColorMode' ]
170
171
const useConfirmDialog : typeof import ( '@vueuse/core' ) [ 'useConfirmDialog' ]
172
+ const useCountdown : typeof import ( '@vueuse/core' ) [ 'useCountdown' ]
171
173
const useCounter : typeof import ( '@vueuse/core' ) [ 'useCounter' ]
172
174
const useCssModule : typeof import ( 'vue' ) [ 'useCssModule' ]
173
175
const useCssVar : typeof import ( '@vueuse/core' ) [ 'useCssVar' ]
@@ -253,13 +255,15 @@ declare global {
253
255
const usePreferredDark : typeof import ( '@vueuse/core' ) [ 'usePreferredDark' ]
254
256
const usePreferredLanguages : typeof import ( '@vueuse/core' ) [ 'usePreferredLanguages' ]
255
257
const usePreferredReducedMotion : typeof import ( '@vueuse/core' ) [ 'usePreferredReducedMotion' ]
258
+ const usePreferredReducedTransparency : typeof import ( '@vueuse/core' ) [ 'usePreferredReducedTransparency' ]
256
259
const usePrevious : typeof import ( '@vueuse/core' ) [ 'usePrevious' ]
257
260
const useRafFn : typeof import ( '@vueuse/core' ) [ 'useRafFn' ]
258
261
const useRefHistory : typeof import ( '@vueuse/core' ) [ 'useRefHistory' ]
259
262
const useRequest : typeof import ( '../src/composables/request' ) [ 'useRequest' ]
260
263
const useResizeObserver : typeof import ( '@vueuse/core' ) [ 'useResizeObserver' ]
261
264
const useRoute : typeof import ( 'vue-router' ) [ 'useRoute' ]
262
265
const useRouter : typeof import ( 'vue-router' ) [ 'useRouter' ]
266
+ const useSSRWidth : typeof import ( '@vueuse/core' ) [ 'useSSRWidth' ]
263
267
const useScreenOrientation : typeof import ( '@vueuse/core' ) [ 'useScreenOrientation' ]
264
268
const useScreenSafeArea : typeof import ( '@vueuse/core' ) [ 'useScreenSafeArea' ]
265
269
const useScriptTag : typeof import ( '@vueuse/core' ) [ 'useScriptTag' ]
@@ -418,6 +422,7 @@ declare module 'vue' {
418
422
readonly onBeforeUpdate : UnwrapRef < typeof import ( 'vue' ) [ 'onBeforeUpdate' ] >
419
423
readonly onClickOutside : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'onClickOutside' ] >
420
424
readonly onDeactivated : UnwrapRef < typeof import ( 'vue' ) [ 'onDeactivated' ] >
425
+ readonly onElementRemoval : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'onElementRemoval' ] >
421
426
readonly onErrorCaptured : UnwrapRef < typeof import ( 'vue' ) [ 'onErrorCaptured' ] >
422
427
readonly onKeyStroke : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'onKeyStroke' ] >
423
428
readonly onLongPress : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'onLongPress' ] >
@@ -507,6 +512,7 @@ declare module 'vue' {
507
512
readonly useCloned : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useCloned' ] >
508
513
readonly useColorMode : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useColorMode' ] >
509
514
readonly useConfirmDialog : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useConfirmDialog' ] >
515
+ readonly useCountdown : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useCountdown' ] >
510
516
readonly useCounter : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useCounter' ] >
511
517
readonly useCssModule : UnwrapRef < typeof import ( 'vue' ) [ 'useCssModule' ] >
512
518
readonly useCssVar : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useCssVar' ] >
@@ -592,13 +598,15 @@ declare module 'vue' {
592
598
readonly usePreferredDark : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredDark' ] >
593
599
readonly usePreferredLanguages : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredLanguages' ] >
594
600
readonly usePreferredReducedMotion : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredReducedMotion' ] >
601
+ readonly usePreferredReducedTransparency : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredReducedTransparency' ] >
595
602
readonly usePrevious : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePrevious' ] >
596
603
readonly useRafFn : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useRafFn' ] >
597
604
readonly useRefHistory : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useRefHistory' ] >
598
605
readonly useRequest : UnwrapRef < typeof import ( '../src/composables/request' ) [ 'useRequest' ] >
599
606
readonly useResizeObserver : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useResizeObserver' ] >
600
607
readonly useRoute : UnwrapRef < typeof import ( 'vue-router' ) [ 'useRoute' ] >
601
608
readonly useRouter : UnwrapRef < typeof import ( 'vue-router' ) [ 'useRouter' ] >
609
+ readonly useSSRWidth : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useSSRWidth' ] >
602
610
readonly useScreenOrientation : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useScreenOrientation' ] >
603
611
readonly useScreenSafeArea : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useScreenSafeArea' ] >
604
612
readonly useScriptTag : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useScriptTag' ] >
0 commit comments