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' ]
@@ -24,8 +25,6 @@ declare global {
24
25
const nextTick : typeof import ( 'vue' ) [ 'nextTick' ]
25
26
const onActivated : typeof import ( 'vue' ) [ 'onActivated' ]
26
27
const onBeforeMount : typeof import ( 'vue' ) [ 'onBeforeMount' ]
27
- const onBeforeRouteLeave : typeof import ( 'vue-router' ) [ 'onBeforeRouteLeave' ]
28
- const onBeforeRouteUpdate : typeof import ( 'vue-router' ) [ 'onBeforeRouteUpdate' ]
29
28
const onBeforeUnmount : typeof import ( 'vue' ) [ 'onBeforeUnmount' ]
30
29
const onBeforeUpdate : typeof import ( 'vue' ) [ 'onBeforeUpdate' ]
31
30
const onDeactivated : typeof import ( 'vue' ) [ 'onDeactivated' ]
@@ -37,6 +36,7 @@ declare global {
37
36
const onServerPrefetch : typeof import ( 'vue' ) [ 'onServerPrefetch' ]
38
37
const onUnmounted : typeof import ( 'vue' ) [ 'onUnmounted' ]
39
38
const onUpdated : typeof import ( 'vue' ) [ 'onUpdated' ]
39
+ const onWatcherCleanup : typeof import ( 'vue' ) [ 'onWatcherCleanup' ]
40
40
const provide : typeof import ( 'vue' ) [ 'provide' ]
41
41
const reactive : typeof import ( 'vue' ) [ 'reactive' ]
42
42
const readonly : typeof import ( 'vue' ) [ 'readonly' ]
@@ -54,10 +54,12 @@ declare global {
54
54
const useAttrs : typeof import ( 'vue' ) [ 'useAttrs' ]
55
55
const useCssModule : typeof import ( 'vue' ) [ 'useCssModule' ]
56
56
const useCssVars : typeof import ( 'vue' ) [ 'useCssVars' ]
57
- const useLink : typeof import ( 'vue-router' ) [ 'useLink' ]
58
- const useRoute : typeof import ( 'vue-router' ) [ 'useRoute' ]
59
- const useRouter : typeof import ( 'vue-router' ) [ 'useRouter' ]
57
+ const useId : typeof import ( 'vue' ) [ 'useId' ]
58
+ const useModel : typeof import ( 'vue' ) [ 'useModel' ]
59
+ const useRoute : typeof import ( 'vue-router/auto' ) [ 'useRoute' ]
60
+ const useRouter : typeof import ( 'vue-router/auto' ) [ 'useRouter' ]
60
61
const useSlots : typeof import ( 'vue' ) [ 'useSlots' ]
62
+ const useTemplateRef : typeof import ( 'vue' ) [ 'useTemplateRef' ]
61
63
const watch : typeof import ( 'vue' ) [ 'watch' ]
62
64
const watchEffect : typeof import ( 'vue' ) [ 'watchEffect' ]
63
65
const watchPostEffect : typeof import ( 'vue' ) [ 'watchPostEffect' ]
@@ -66,9 +68,10 @@ declare global {
66
68
// for type re-export
67
69
declare global {
68
70
// @ts -ignore
69
- export type { Component , ComponentPublicInstance , ComputedRef , ExtractDefaultPropTypes , ExtractPropTypes , ExtractPublicPropTypes , InjectionKey , PropType , Ref , VNode , WritableComputedRef } from 'vue'
71
+ export type { Component , Slot , Slots , ComponentPublicInstance , ComputedRef , DirectiveBinding , ExtractDefaultPropTypes , ExtractPropTypes , ExtractPublicPropTypes , InjectionKey , PropType , Ref , MaybeRef , MaybeRefOrGetter , VNode , WritableComputedRef } from 'vue'
70
72
import ( 'vue' )
71
73
}
74
+
72
75
// for vue template auto import
73
76
import { UnwrapRef } from 'vue'
74
77
declare module 'vue' {
@@ -93,8 +96,6 @@ declare module 'vue' {
93
96
readonly nextTick : UnwrapRef < typeof import ( 'vue' ) [ 'nextTick' ] >
94
97
readonly onActivated : UnwrapRef < typeof import ( 'vue' ) [ 'onActivated' ] >
95
98
readonly onBeforeMount : UnwrapRef < typeof import ( 'vue' ) [ 'onBeforeMount' ] >
96
- readonly onBeforeRouteLeave : UnwrapRef < typeof import ( 'vue-router' ) [ 'onBeforeRouteLeave' ] >
97
- readonly onBeforeRouteUpdate : UnwrapRef < typeof import ( 'vue-router' ) [ 'onBeforeRouteUpdate' ] >
98
99
readonly onBeforeUnmount : UnwrapRef < typeof import ( 'vue' ) [ 'onBeforeUnmount' ] >
99
100
readonly onBeforeUpdate : UnwrapRef < typeof import ( 'vue' ) [ 'onBeforeUpdate' ] >
100
101
readonly onDeactivated : UnwrapRef < typeof import ( 'vue' ) [ 'onDeactivated' ] >
@@ -106,6 +107,7 @@ declare module 'vue' {
106
107
readonly onServerPrefetch : UnwrapRef < typeof import ( 'vue' ) [ 'onServerPrefetch' ] >
107
108
readonly onUnmounted : UnwrapRef < typeof import ( 'vue' ) [ 'onUnmounted' ] >
108
109
readonly onUpdated : UnwrapRef < typeof import ( 'vue' ) [ 'onUpdated' ] >
110
+ readonly onWatcherCleanup : UnwrapRef < typeof import ( 'vue' ) [ 'onWatcherCleanup' ] >
109
111
readonly provide : UnwrapRef < typeof import ( 'vue' ) [ 'provide' ] >
110
112
readonly reactive : UnwrapRef < typeof import ( 'vue' ) [ 'reactive' ] >
111
113
readonly readonly : UnwrapRef < typeof import ( 'vue' ) [ 'readonly' ] >
@@ -123,75 +125,15 @@ declare module 'vue' {
123
125
readonly useAttrs : UnwrapRef < typeof import ( 'vue' ) [ 'useAttrs' ] >
124
126
readonly useCssModule : UnwrapRef < typeof import ( 'vue' ) [ 'useCssModule' ] >
125
127
readonly useCssVars : UnwrapRef < typeof import ( 'vue' ) [ 'useCssVars' ] >
126
- readonly useLink : UnwrapRef < typeof import ( 'vue-router' ) [ 'useLink' ] >
127
- readonly useRoute : UnwrapRef < typeof import ( 'vue-router' ) [ 'useRoute' ] >
128
- readonly useRouter : UnwrapRef < typeof import ( 'vue-router' ) [ 'useRouter' ] >
128
+ readonly useId : UnwrapRef < typeof import ( 'vue' ) [ 'useId' ] >
129
+ readonly useModel : UnwrapRef < typeof import ( 'vue' ) [ 'useModel' ] >
130
+ readonly useRoute : UnwrapRef < typeof import ( 'vue-router/auto' ) [ 'useRoute' ] >
131
+ readonly useRouter : UnwrapRef < typeof import ( 'vue-router/auto' ) [ 'useRouter' ] >
129
132
readonly useSlots : UnwrapRef < typeof import ( 'vue' ) [ 'useSlots' ] >
133
+ readonly useTemplateRef : UnwrapRef < typeof import ( 'vue' ) [ 'useTemplateRef' ] >
130
134
readonly watch : UnwrapRef < typeof import ( 'vue' ) [ 'watch' ] >
131
135
readonly watchEffect : UnwrapRef < typeof import ( 'vue' ) [ 'watchEffect' ] >
132
136
readonly watchPostEffect : UnwrapRef < typeof import ( 'vue' ) [ 'watchPostEffect' ] >
133
137
readonly watchSyncEffect : UnwrapRef < typeof import ( 'vue' ) [ 'watchSyncEffect' ] >
134
138
}
135
- }
136
- declare module '@vue/runtime-core' {
137
- interface GlobalComponents { }
138
- interface ComponentCustomProperties {
139
- readonly EffectScope : UnwrapRef < typeof import ( 'vue' ) [ 'EffectScope' ] >
140
- readonly computed : UnwrapRef < typeof import ( 'vue' ) [ 'computed' ] >
141
- readonly createApp : UnwrapRef < typeof import ( 'vue' ) [ 'createApp' ] >
142
- readonly customRef : UnwrapRef < typeof import ( 'vue' ) [ 'customRef' ] >
143
- readonly defineAsyncComponent : UnwrapRef < typeof import ( 'vue' ) [ 'defineAsyncComponent' ] >
144
- readonly defineComponent : UnwrapRef < typeof import ( 'vue' ) [ 'defineComponent' ] >
145
- readonly effectScope : UnwrapRef < typeof import ( 'vue' ) [ 'effectScope' ] >
146
- readonly getCurrentInstance : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentInstance' ] >
147
- readonly getCurrentScope : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentScope' ] >
148
- readonly h : UnwrapRef < typeof import ( 'vue' ) [ 'h' ] >
149
- readonly inject : UnwrapRef < typeof import ( 'vue' ) [ 'inject' ] >
150
- readonly isProxy : UnwrapRef < typeof import ( 'vue' ) [ 'isProxy' ] >
151
- readonly isReactive : UnwrapRef < typeof import ( 'vue' ) [ 'isReactive' ] >
152
- readonly isReadonly : UnwrapRef < typeof import ( 'vue' ) [ 'isReadonly' ] >
153
- readonly isRef : UnwrapRef < typeof import ( 'vue' ) [ 'isRef' ] >
154
- readonly markRaw : UnwrapRef < typeof import ( 'vue' ) [ 'markRaw' ] >
155
- readonly nextTick : UnwrapRef < typeof import ( 'vue' ) [ 'nextTick' ] >
156
- readonly onActivated : UnwrapRef < typeof import ( 'vue' ) [ 'onActivated' ] >
157
- readonly onBeforeMount : UnwrapRef < typeof import ( 'vue' ) [ 'onBeforeMount' ] >
158
- readonly onBeforeRouteLeave : UnwrapRef < typeof import ( 'vue-router' ) [ 'onBeforeRouteLeave' ] >
159
- readonly onBeforeRouteUpdate : UnwrapRef < typeof import ( 'vue-router' ) [ 'onBeforeRouteUpdate' ] >
160
- readonly onBeforeUnmount : UnwrapRef < typeof import ( 'vue' ) [ 'onBeforeUnmount' ] >
161
- readonly onBeforeUpdate : UnwrapRef < typeof import ( 'vue' ) [ 'onBeforeUpdate' ] >
162
- readonly onDeactivated : UnwrapRef < typeof import ( 'vue' ) [ 'onDeactivated' ] >
163
- readonly onErrorCaptured : UnwrapRef < typeof import ( 'vue' ) [ 'onErrorCaptured' ] >
164
- readonly onMounted : UnwrapRef < typeof import ( 'vue' ) [ 'onMounted' ] >
165
- readonly onRenderTracked : UnwrapRef < typeof import ( 'vue' ) [ 'onRenderTracked' ] >
166
- readonly onRenderTriggered : UnwrapRef < typeof import ( 'vue' ) [ 'onRenderTriggered' ] >
167
- readonly onScopeDispose : UnwrapRef < typeof import ( 'vue' ) [ 'onScopeDispose' ] >
168
- readonly onServerPrefetch : UnwrapRef < typeof import ( 'vue' ) [ 'onServerPrefetch' ] >
169
- readonly onUnmounted : UnwrapRef < typeof import ( 'vue' ) [ 'onUnmounted' ] >
170
- readonly onUpdated : UnwrapRef < typeof import ( 'vue' ) [ 'onUpdated' ] >
171
- readonly provide : UnwrapRef < typeof import ( 'vue' ) [ 'provide' ] >
172
- readonly reactive : UnwrapRef < typeof import ( 'vue' ) [ 'reactive' ] >
173
- readonly readonly : UnwrapRef < typeof import ( 'vue' ) [ 'readonly' ] >
174
- readonly ref : UnwrapRef < typeof import ( 'vue' ) [ 'ref' ] >
175
- readonly resolveComponent : UnwrapRef < typeof import ( 'vue' ) [ 'resolveComponent' ] >
176
- readonly shallowReactive : UnwrapRef < typeof import ( 'vue' ) [ 'shallowReactive' ] >
177
- readonly shallowReadonly : UnwrapRef < typeof import ( 'vue' ) [ 'shallowReadonly' ] >
178
- readonly shallowRef : UnwrapRef < typeof import ( 'vue' ) [ 'shallowRef' ] >
179
- readonly toRaw : UnwrapRef < typeof import ( 'vue' ) [ 'toRaw' ] >
180
- readonly toRef : UnwrapRef < typeof import ( 'vue' ) [ 'toRef' ] >
181
- readonly toRefs : UnwrapRef < typeof import ( 'vue' ) [ 'toRefs' ] >
182
- readonly toValue : UnwrapRef < typeof import ( 'vue' ) [ 'toValue' ] >
183
- readonly triggerRef : UnwrapRef < typeof import ( 'vue' ) [ 'triggerRef' ] >
184
- readonly unref : UnwrapRef < typeof import ( 'vue' ) [ 'unref' ] >
185
- readonly useAttrs : UnwrapRef < typeof import ( 'vue' ) [ 'useAttrs' ] >
186
- readonly useCssModule : UnwrapRef < typeof import ( 'vue' ) [ 'useCssModule' ] >
187
- readonly useCssVars : UnwrapRef < typeof import ( 'vue' ) [ 'useCssVars' ] >
188
- readonly useLink : UnwrapRef < typeof import ( 'vue-router' ) [ 'useLink' ] >
189
- readonly useRoute : UnwrapRef < typeof import ( 'vue-router' ) [ 'useRoute' ] >
190
- readonly useRouter : UnwrapRef < typeof import ( 'vue-router' ) [ 'useRouter' ] >
191
- readonly useSlots : UnwrapRef < typeof import ( 'vue' ) [ 'useSlots' ] >
192
- readonly watch : UnwrapRef < typeof import ( 'vue' ) [ 'watch' ] >
193
- readonly watchEffect : UnwrapRef < typeof import ( 'vue' ) [ 'watchEffect' ] >
194
- readonly watchPostEffect : UnwrapRef < typeof import ( 'vue' ) [ 'watchPostEffect' ] >
195
- readonly watchSyncEffect : UnwrapRef < typeof import ( 'vue' ) [ 'watchSyncEffect' ] >
196
- }
197
- }
139
+ }
0 commit comments