@@ -55,6 +55,7 @@ declare global {
55
55
const onBeforeUpdate : typeof import ( 'vue' ) [ 'onBeforeUpdate' ]
56
56
const onClickOutside : typeof import ( '@vueuse/core' ) [ 'onClickOutside' ]
57
57
const onDeactivated : typeof import ( 'vue' ) [ 'onDeactivated' ]
58
+ const onElementRemoval : typeof import ( '@vueuse/core' ) [ 'onElementRemoval' ]
58
59
const onError : typeof import ( '@dcloudio/uni-app' ) [ 'onError' ]
59
60
const onErrorCaptured : typeof import ( 'vue' ) [ 'onErrorCaptured' ]
60
61
const onHide : typeof import ( '@dcloudio/uni-app' ) [ 'onHide' ]
@@ -239,11 +240,13 @@ declare global {
239
240
const usePreferredDark : typeof import ( '@vueuse/core' ) [ 'usePreferredDark' ]
240
241
const usePreferredLanguages : typeof import ( '@vueuse/core' ) [ 'usePreferredLanguages' ]
241
242
const usePreferredReducedMotion : typeof import ( '@vueuse/core' ) [ 'usePreferredReducedMotion' ]
243
+ const usePreferredReducedTransparency : typeof import ( '@vueuse/core' ) [ 'usePreferredReducedTransparency' ]
242
244
const usePrevious : typeof import ( '@vueuse/core' ) [ 'usePrevious' ]
243
245
const useQuery : typeof import ( './composables/useQuery' ) [ 'useQuery' ]
244
246
const useRafFn : typeof import ( '@vueuse/core' ) [ 'useRafFn' ]
245
247
const useRefHistory : typeof import ( '@vueuse/core' ) [ 'useRefHistory' ]
246
248
const useResizeObserver : typeof import ( '@vueuse/core' ) [ 'useResizeObserver' ]
249
+ const useSSRWidth : typeof import ( '@vueuse/core' ) [ 'useSSRWidth' ]
247
250
const useScreenOrientation : typeof import ( '@vueuse/core' ) [ 'useScreenOrientation' ]
248
251
const useScreenSafeArea : typeof import ( '@vueuse/core' ) [ 'useScreenSafeArea' ]
249
252
const useScriptTag : typeof import ( '@vueuse/core' ) [ 'useScriptTag' ]
@@ -316,6 +319,7 @@ declare global {
316
319
export type { Component , ComponentPublicInstance , ComputedRef , DirectiveBinding , ExtractDefaultPropTypes , ExtractPropTypes , ExtractPublicPropTypes , InjectionKey , PropType , Ref , MaybeRef , MaybeRefOrGetter , VNode , WritableComputedRef } from 'vue'
317
320
import ( 'vue' )
318
321
}
322
+
319
323
// for vue template auto import
320
324
import { UnwrapRef } from 'vue'
321
325
declare module 'vue' {
@@ -370,6 +374,7 @@ declare module 'vue' {
370
374
readonly onBeforeUpdate : UnwrapRef < typeof import ( 'vue' ) [ 'onBeforeUpdate' ] >
371
375
readonly onClickOutside : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'onClickOutside' ] >
372
376
readonly onDeactivated : UnwrapRef < typeof import ( 'vue' ) [ 'onDeactivated' ] >
377
+ readonly onElementRemoval : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'onElementRemoval' ] >
373
378
readonly onError : UnwrapRef < typeof import ( '@dcloudio/uni-app' ) [ 'onError' ] >
374
379
readonly onErrorCaptured : UnwrapRef < typeof import ( 'vue' ) [ 'onErrorCaptured' ] >
375
380
readonly onHide : UnwrapRef < typeof import ( '@dcloudio/uni-app' ) [ 'onHide' ] >
@@ -554,11 +559,13 @@ declare module 'vue' {
554
559
readonly usePreferredDark : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredDark' ] >
555
560
readonly usePreferredLanguages : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredLanguages' ] >
556
561
readonly usePreferredReducedMotion : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredReducedMotion' ] >
562
+ readonly usePreferredReducedTransparency : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePreferredReducedTransparency' ] >
557
563
readonly usePrevious : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePrevious' ] >
558
564
readonly useQuery : UnwrapRef < typeof import ( './composables/useQuery' ) [ 'useQuery' ] >
559
565
readonly useRafFn : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useRafFn' ] >
560
566
readonly useRefHistory : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useRefHistory' ] >
561
567
readonly useResizeObserver : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useResizeObserver' ] >
568
+ readonly useSSRWidth : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useSSRWidth' ] >
562
569
readonly useScreenOrientation : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useScreenOrientation' ] >
563
570
readonly useScreenSafeArea : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useScreenSafeArea' ] >
564
571
readonly useScriptTag : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useScriptTag' ] >
@@ -625,4 +632,4 @@ declare module 'vue' {
625
632
readonly watchWithFilter : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'watchWithFilter' ] >
626
633
readonly whenever : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'whenever' ] >
627
634
}
628
- }
635
+ }
0 commit comments