3
3
// @ts -nocheck
4
4
// noinspection JSUnusedGlobalSymbols
5
5
// Generated by unplugin-auto-import
6
+ // biome-ignore lint: disable
6
7
export { }
7
8
declare global {
8
9
const EffectScope : typeof import ( 'vue' ) [ 'EffectScope' ]
@@ -35,6 +36,7 @@ declare global {
35
36
const onServerPrefetch : typeof import ( 'vue' ) [ 'onServerPrefetch' ]
36
37
const onUnmounted : typeof import ( 'vue' ) [ 'onUnmounted' ]
37
38
const onUpdated : typeof import ( 'vue' ) [ 'onUpdated' ]
39
+ const onWatcherCleanup : typeof import ( 'vue' ) [ 'onWatcherCleanup' ]
38
40
const provide : typeof import ( 'vue' ) [ 'provide' ]
39
41
const reactive : typeof import ( 'vue' ) [ 'reactive' ]
40
42
const readonly : typeof import ( 'vue' ) [ 'readonly' ]
@@ -52,7 +54,10 @@ declare global {
52
54
const useAttrs : typeof import ( 'vue' ) [ 'useAttrs' ]
53
55
const useCssModule : typeof import ( 'vue' ) [ 'useCssModule' ]
54
56
const useCssVars : typeof import ( 'vue' ) [ 'useCssVars' ]
57
+ const useId : typeof import ( 'vue' ) [ 'useId' ]
58
+ const useModel : typeof import ( 'vue' ) [ 'useModel' ]
55
59
const useSlots : typeof import ( 'vue' ) [ 'useSlots' ]
60
+ const useTemplateRef : typeof import ( 'vue' ) [ 'useTemplateRef' ]
56
61
const watch : typeof import ( 'vue' ) [ 'watch' ]
57
62
const watchEffect : typeof import ( 'vue' ) [ 'watchEffect' ]
58
63
const watchPostEffect : typeof import ( 'vue' ) [ 'watchPostEffect' ]
@@ -61,7 +66,7 @@ declare global {
61
66
// for type re-export
62
67
declare global {
63
68
// @ts -ignore
64
- export type { Component , ComponentPublicInstance , ComputedRef , ExtractDefaultPropTypes , ExtractPropTypes , ExtractPublicPropTypes , InjectionKey , PropType , Ref , VNode , WritableComputedRef } from 'vue'
69
+ export type { Component , ComponentPublicInstance , ComputedRef , DirectiveBinding , ExtractDefaultPropTypes , ExtractPropTypes , ExtractPublicPropTypes , InjectionKey , PropType , Ref , MaybeRef , MaybeRefOrGetter , VNode , WritableComputedRef } from 'vue'
65
70
import ( 'vue' )
66
71
}
67
72
// for vue template auto import
@@ -99,6 +104,7 @@ declare module 'vue' {
99
104
readonly onServerPrefetch : UnwrapRef < typeof import ( 'vue' ) [ 'onServerPrefetch' ] >
100
105
readonly onUnmounted : UnwrapRef < typeof import ( 'vue' ) [ 'onUnmounted' ] >
101
106
readonly onUpdated : UnwrapRef < typeof import ( 'vue' ) [ 'onUpdated' ] >
107
+ readonly onWatcherCleanup : UnwrapRef < typeof import ( 'vue' ) [ 'onWatcherCleanup' ] >
102
108
readonly provide : UnwrapRef < typeof import ( 'vue' ) [ 'provide' ] >
103
109
readonly reactive : UnwrapRef < typeof import ( 'vue' ) [ 'reactive' ] >
104
110
readonly readonly : UnwrapRef < typeof import ( 'vue' ) [ 'readonly' ] >
@@ -116,64 +122,10 @@ declare module 'vue' {
116
122
readonly useAttrs : UnwrapRef < typeof import ( 'vue' ) [ 'useAttrs' ] >
117
123
readonly useCssModule : UnwrapRef < typeof import ( 'vue' ) [ 'useCssModule' ] >
118
124
readonly useCssVars : UnwrapRef < typeof import ( 'vue' ) [ 'useCssVars' ] >
125
+ readonly useId : UnwrapRef < typeof import ( 'vue' ) [ 'useId' ] >
126
+ readonly useModel : UnwrapRef < typeof import ( 'vue' ) [ 'useModel' ] >
119
127
readonly useSlots : UnwrapRef < typeof import ( 'vue' ) [ 'useSlots' ] >
120
- readonly watch : UnwrapRef < typeof import ( 'vue' ) [ 'watch' ] >
121
- readonly watchEffect : UnwrapRef < typeof import ( 'vue' ) [ 'watchEffect' ] >
122
- readonly watchPostEffect : UnwrapRef < typeof import ( 'vue' ) [ 'watchPostEffect' ] >
123
- readonly watchSyncEffect : UnwrapRef < typeof import ( 'vue' ) [ 'watchSyncEffect' ] >
124
- }
125
- }
126
- declare module '@vue/runtime-core' {
127
- interface GlobalComponents { }
128
- interface ComponentCustomProperties {
129
- readonly EffectScope : UnwrapRef < typeof import ( 'vue' ) [ 'EffectScope' ] >
130
- readonly computed : UnwrapRef < typeof import ( 'vue' ) [ 'computed' ] >
131
- readonly createApp : UnwrapRef < typeof import ( 'vue' ) [ 'createApp' ] >
132
- readonly customRef : UnwrapRef < typeof import ( 'vue' ) [ 'customRef' ] >
133
- readonly defineAsyncComponent : UnwrapRef < typeof import ( 'vue' ) [ 'defineAsyncComponent' ] >
134
- readonly defineComponent : UnwrapRef < typeof import ( 'vue' ) [ 'defineComponent' ] >
135
- readonly effectScope : UnwrapRef < typeof import ( 'vue' ) [ 'effectScope' ] >
136
- readonly getCurrentInstance : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentInstance' ] >
137
- readonly getCurrentScope : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentScope' ] >
138
- readonly h : UnwrapRef < typeof import ( 'vue' ) [ 'h' ] >
139
- readonly inject : UnwrapRef < typeof import ( 'vue' ) [ 'inject' ] >
140
- readonly isProxy : UnwrapRef < typeof import ( 'vue' ) [ 'isProxy' ] >
141
- readonly isReactive : UnwrapRef < typeof import ( 'vue' ) [ 'isReactive' ] >
142
- readonly isReadonly : UnwrapRef < typeof import ( 'vue' ) [ 'isReadonly' ] >
143
- readonly isRef : UnwrapRef < typeof import ( 'vue' ) [ 'isRef' ] >
144
- readonly markRaw : UnwrapRef < typeof import ( 'vue' ) [ 'markRaw' ] >
145
- readonly nextTick : UnwrapRef < typeof import ( 'vue' ) [ 'nextTick' ] >
146
- readonly onActivated : UnwrapRef < typeof import ( 'vue' ) [ 'onActivated' ] >
147
- readonly onBeforeMount : UnwrapRef < typeof import ( 'vue' ) [ 'onBeforeMount' ] >
148
- readonly onBeforeUnmount : UnwrapRef < typeof import ( 'vue' ) [ 'onBeforeUnmount' ] >
149
- readonly onBeforeUpdate : UnwrapRef < typeof import ( 'vue' ) [ 'onBeforeUpdate' ] >
150
- readonly onDeactivated : UnwrapRef < typeof import ( 'vue' ) [ 'onDeactivated' ] >
151
- readonly onErrorCaptured : UnwrapRef < typeof import ( 'vue' ) [ 'onErrorCaptured' ] >
152
- readonly onMounted : UnwrapRef < typeof import ( 'vue' ) [ 'onMounted' ] >
153
- readonly onRenderTracked : UnwrapRef < typeof import ( 'vue' ) [ 'onRenderTracked' ] >
154
- readonly onRenderTriggered : UnwrapRef < typeof import ( 'vue' ) [ 'onRenderTriggered' ] >
155
- readonly onScopeDispose : UnwrapRef < typeof import ( 'vue' ) [ 'onScopeDispose' ] >
156
- readonly onServerPrefetch : UnwrapRef < typeof import ( 'vue' ) [ 'onServerPrefetch' ] >
157
- readonly onUnmounted : UnwrapRef < typeof import ( 'vue' ) [ 'onUnmounted' ] >
158
- readonly onUpdated : UnwrapRef < typeof import ( 'vue' ) [ 'onUpdated' ] >
159
- readonly provide : UnwrapRef < typeof import ( 'vue' ) [ 'provide' ] >
160
- readonly reactive : UnwrapRef < typeof import ( 'vue' ) [ 'reactive' ] >
161
- readonly readonly : UnwrapRef < typeof import ( 'vue' ) [ 'readonly' ] >
162
- readonly ref : UnwrapRef < typeof import ( 'vue' ) [ 'ref' ] >
163
- readonly resolveComponent : UnwrapRef < typeof import ( 'vue' ) [ 'resolveComponent' ] >
164
- readonly shallowReactive : UnwrapRef < typeof import ( 'vue' ) [ 'shallowReactive' ] >
165
- readonly shallowReadonly : UnwrapRef < typeof import ( 'vue' ) [ 'shallowReadonly' ] >
166
- readonly shallowRef : UnwrapRef < typeof import ( 'vue' ) [ 'shallowRef' ] >
167
- readonly toRaw : UnwrapRef < typeof import ( 'vue' ) [ 'toRaw' ] >
168
- readonly toRef : UnwrapRef < typeof import ( 'vue' ) [ 'toRef' ] >
169
- readonly toRefs : UnwrapRef < typeof import ( 'vue' ) [ 'toRefs' ] >
170
- readonly toValue : UnwrapRef < typeof import ( 'vue' ) [ 'toValue' ] >
171
- readonly triggerRef : UnwrapRef < typeof import ( 'vue' ) [ 'triggerRef' ] >
172
- readonly unref : UnwrapRef < typeof import ( 'vue' ) [ 'unref' ] >
173
- readonly useAttrs : UnwrapRef < typeof import ( 'vue' ) [ 'useAttrs' ] >
174
- readonly useCssModule : UnwrapRef < typeof import ( 'vue' ) [ 'useCssModule' ] >
175
- readonly useCssVars : UnwrapRef < typeof import ( 'vue' ) [ 'useCssVars' ] >
176
- readonly useSlots : UnwrapRef < typeof import ( 'vue' ) [ 'useSlots' ] >
128
+ readonly useTemplateRef : UnwrapRef < typeof import ( 'vue' ) [ 'useTemplateRef' ] >
177
129
readonly watch : UnwrapRef < typeof import ( 'vue' ) [ 'watch' ] >
178
130
readonly watchEffect : UnwrapRef < typeof import ( 'vue' ) [ 'watchEffect' ] >
179
131
readonly watchPostEffect : UnwrapRef < typeof import ( 'vue' ) [ 'watchPostEffect' ] >
0 commit comments