@@ -53,6 +53,7 @@ declare global {
53
53
const getActivePinia : typeof import ( 'pinia' ) [ 'getActivePinia' ]
54
54
const getCurrentInstance : typeof import ( 'vue' ) [ 'getCurrentInstance' ]
55
55
const getCurrentScope : typeof import ( 'vue' ) [ 'getCurrentScope' ]
56
+ const getCurrentWatcher : typeof import ( 'vue' ) [ 'getCurrentWatcher' ]
56
57
const h : typeof import ( 'vue' ) [ 'h' ]
57
58
const ignorableWatch : typeof import ( '@vueuse/core' ) [ 'ignorableWatch' ]
58
59
const inject : typeof import ( 'vue' ) [ 'inject' ]
@@ -63,6 +64,7 @@ declare global {
63
64
const isReactive : typeof import ( 'vue' ) [ 'isReactive' ]
64
65
const isReadonly : typeof import ( 'vue' ) [ 'isReadonly' ]
65
66
const isRef : typeof import ( 'vue' ) [ 'isRef' ]
67
+ const isShallow : typeof import ( 'vue' ) [ 'isShallow' ]
66
68
const logicAnd : typeof import ( '@vueuse/math' ) [ 'logicAnd' ]
67
69
const logicNot : typeof import ( '@vueuse/math' ) [ 'logicNot' ]
68
70
const logicOr : typeof import ( '@vueuse/math' ) [ 'logicOr' ]
@@ -298,6 +300,7 @@ declare global {
298
300
const useThrottleFn : typeof import ( '@vueuse/core' ) [ 'useThrottleFn' ]
299
301
const useThrottledRefHistory : typeof import ( '@vueuse/core' ) [ 'useThrottledRefHistory' ]
300
302
const useTimeAgo : typeof import ( '@vueuse/core' ) [ 'useTimeAgo' ]
303
+ const useTimeAgoIntl : typeof import ( '@vueuse/core' ) [ 'useTimeAgoIntl' ]
301
304
const useTimeout : typeof import ( '@vueuse/core' ) [ 'useTimeout' ]
302
305
const useTimeoutFn : typeof import ( '@vueuse/core' ) [ 'useTimeoutFn' ]
303
306
const useTimeoutPoll : typeof import ( '@vueuse/core' ) [ 'useTimeoutPoll' ]
@@ -342,7 +345,7 @@ declare global {
342
345
// for type re-export
343
346
declare global {
344
347
// @ts -ignore
345
- export type { Component , Slot , Slots , ComponentPublicInstance , ComputedRef , DirectiveBinding , ExtractDefaultPropTypes , ExtractPropTypes , ExtractPublicPropTypes , InjectionKey , PropType , Ref , MaybeRef , MaybeRefOrGetter , VNode , WritableComputedRef } from 'vue'
348
+ export type { Component , Slot , Slots , ComponentPublicInstance , ComputedRef , DirectiveBinding , ExtractDefaultPropTypes , ExtractPropTypes , ExtractPublicPropTypes , InjectionKey , PropType , Ref , ShallowRef , MaybeRef , MaybeRefOrGetter , VNode , WritableComputedRef } from 'vue'
346
349
import ( 'vue' )
347
350
// @ts -ignore
348
351
export type { ButtonGroupData } from './utils/buttons'
@@ -394,6 +397,7 @@ declare module 'vue' {
394
397
readonly getActivePinia : UnwrapRef < typeof import ( 'pinia' ) [ 'getActivePinia' ] >
395
398
readonly getCurrentInstance : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentInstance' ] >
396
399
readonly getCurrentScope : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentScope' ] >
400
+ readonly getCurrentWatcher : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentWatcher' ] >
397
401
readonly h : UnwrapRef < typeof import ( 'vue' ) [ 'h' ] >
398
402
readonly ignorableWatch : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'ignorableWatch' ] >
399
403
readonly inject : UnwrapRef < typeof import ( 'vue' ) [ 'inject' ] >
@@ -404,6 +408,7 @@ declare module 'vue' {
404
408
readonly isReactive : UnwrapRef < typeof import ( 'vue' ) [ 'isReactive' ] >
405
409
readonly isReadonly : UnwrapRef < typeof import ( 'vue' ) [ 'isReadonly' ] >
406
410
readonly isRef : UnwrapRef < typeof import ( 'vue' ) [ 'isRef' ] >
411
+ readonly isShallow : UnwrapRef < typeof import ( 'vue' ) [ 'isShallow' ] >
407
412
readonly logicAnd : UnwrapRef < typeof import ( '@vueuse/math' ) [ 'logicAnd' ] >
408
413
readonly logicNot : UnwrapRef < typeof import ( '@vueuse/math' ) [ 'logicNot' ] >
409
414
readonly logicOr : UnwrapRef < typeof import ( '@vueuse/math' ) [ 'logicOr' ] >
@@ -639,6 +644,7 @@ declare module 'vue' {
639
644
readonly useThrottleFn : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useThrottleFn' ] >
640
645
readonly useThrottledRefHistory : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useThrottledRefHistory' ] >
641
646
readonly useTimeAgo : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useTimeAgo' ] >
647
+ readonly useTimeAgoIntl : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useTimeAgoIntl' ] >
642
648
readonly useTimeout : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useTimeout' ] >
643
649
readonly useTimeoutFn : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useTimeoutFn' ] >
644
650
readonly useTimeoutPoll : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useTimeoutPoll' ] >
0 commit comments