@@ -24,12 +24,14 @@ declare global {
24
24
const getActivePinia : typeof import ( 'pinia' ) [ 'getActivePinia' ]
25
25
const getCurrentInstance : typeof import ( 'vue' ) [ 'getCurrentInstance' ]
26
26
const getCurrentScope : typeof import ( 'vue' ) [ 'getCurrentScope' ]
27
+ const getCurrentWatcher : typeof import ( 'vue' ) [ 'getCurrentWatcher' ]
27
28
const h : typeof import ( 'vue' ) [ 'h' ]
28
29
const inject : typeof import ( 'vue' ) [ 'inject' ]
29
30
const isProxy : typeof import ( 'vue' ) [ 'isProxy' ]
30
31
const isReactive : typeof import ( 'vue' ) [ 'isReactive' ]
31
32
const isReadonly : typeof import ( 'vue' ) [ 'isReadonly' ]
32
33
const isRef : typeof import ( 'vue' ) [ 'isRef' ]
34
+ const isShallow : typeof import ( 'vue' ) [ 'isShallow' ]
33
35
const mapActions : typeof import ( 'pinia' ) [ 'mapActions' ]
34
36
const mapGetters : typeof import ( 'pinia' ) [ 'mapGetters' ]
35
37
const mapState : typeof import ( 'pinia' ) [ 'mapState' ]
@@ -88,7 +90,7 @@ declare global {
88
90
// for type re-export
89
91
declare global {
90
92
// @ts -ignore
91
- export type { Component , Slot , Slots , ComponentPublicInstance , ComputedRef , DirectiveBinding , ExtractDefaultPropTypes , ExtractPropTypes , ExtractPublicPropTypes , InjectionKey , PropType , Ref , MaybeRef , MaybeRefOrGetter , VNode , WritableComputedRef } from 'vue'
93
+ export type { Component , Slot , Slots , ComponentPublicInstance , ComputedRef , DirectiveBinding , ExtractDefaultPropTypes , ExtractPropTypes , ExtractPublicPropTypes , InjectionKey , PropType , Ref , ShallowRef , MaybeRef , MaybeRefOrGetter , VNode , WritableComputedRef } from 'vue'
92
94
import ( 'vue' )
93
95
}
94
96
@@ -115,12 +117,14 @@ declare module 'vue' {
115
117
readonly getActivePinia : UnwrapRef < typeof import ( 'pinia' ) [ 'getActivePinia' ] >
116
118
readonly getCurrentInstance : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentInstance' ] >
117
119
readonly getCurrentScope : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentScope' ] >
120
+ readonly getCurrentWatcher : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentWatcher' ] >
118
121
readonly h : UnwrapRef < typeof import ( 'vue' ) [ 'h' ] >
119
122
readonly inject : UnwrapRef < typeof import ( 'vue' ) [ 'inject' ] >
120
123
readonly isProxy : UnwrapRef < typeof import ( 'vue' ) [ 'isProxy' ] >
121
124
readonly isReactive : UnwrapRef < typeof import ( 'vue' ) [ 'isReactive' ] >
122
125
readonly isReadonly : UnwrapRef < typeof import ( 'vue' ) [ 'isReadonly' ] >
123
126
readonly isRef : UnwrapRef < typeof import ( 'vue' ) [ 'isRef' ] >
127
+ readonly isShallow : UnwrapRef < typeof import ( 'vue' ) [ 'isShallow' ] >
124
128
readonly mapActions : UnwrapRef < typeof import ( 'pinia' ) [ 'mapActions' ] >
125
129
readonly mapGetters : UnwrapRef < typeof import ( 'pinia' ) [ 'mapGetters' ] >
126
130
readonly mapState : UnwrapRef < typeof import ( 'pinia' ) [ 'mapState' ] >
0 commit comments