@@ -35,6 +35,7 @@ declare global {
35
35
const onServerPrefetch : typeof import ( 'vue' ) [ 'onServerPrefetch' ]
36
36
const onUnmounted : typeof import ( 'vue' ) [ 'onUnmounted' ]
37
37
const onUpdated : typeof import ( 'vue' ) [ 'onUpdated' ]
38
+ const onWatcherCleanup : typeof import ( 'vue' ) [ 'onWatcherCleanup' ]
38
39
const provide : typeof import ( 'vue' ) [ 'provide' ]
39
40
const reactive : typeof import ( 'vue' ) [ 'reactive' ]
40
41
const readonly : typeof import ( 'vue' ) [ 'readonly' ]
@@ -52,7 +53,10 @@ declare global {
52
53
const useAttrs : typeof import ( 'vue' ) [ 'useAttrs' ]
53
54
const useCssModule : typeof import ( 'vue' ) [ 'useCssModule' ]
54
55
const useCssVars : typeof import ( 'vue' ) [ 'useCssVars' ]
56
+ const useId : typeof import ( 'vue' ) [ 'useId' ]
57
+ const useModel : typeof import ( 'vue' ) [ 'useModel' ]
55
58
const useSlots : typeof import ( 'vue' ) [ 'useSlots' ]
59
+ const useTemplateRef : typeof import ( 'vue' ) [ 'useTemplateRef' ]
56
60
const watch : typeof import ( 'vue' ) [ 'watch' ]
57
61
const watchEffect : typeof import ( 'vue' ) [ 'watchEffect' ]
58
62
const watchPostEffect : typeof import ( 'vue' ) [ 'watchPostEffect' ]
@@ -61,6 +65,6 @@ declare global {
61
65
// for type re-export
62
66
declare global {
63
67
// @ts -ignore
64
- export type { Component , ComponentPublicInstance , ComputedRef , ExtractDefaultPropTypes , ExtractPropTypes , ExtractPublicPropTypes , InjectionKey , PropType , Ref , VNode , WritableComputedRef } from 'vue'
68
+ export type { Component , ComponentPublicInstance , ComputedRef , DirectiveBinding , ExtractDefaultPropTypes , ExtractPropTypes , ExtractPublicPropTypes , InjectionKey , PropType , Ref , MaybeRef , MaybeRefOrGetter , VNode , WritableComputedRef } from 'vue'
65
69
import ( 'vue' )
66
70
}
0 commit comments