Skip to content

Commit 21b978d

Browse files
f3vef3ve
f3ve
authored andcommitted
chore: updated auto-imports
1 parent 9718905 commit 21b978d

File tree

1 file changed

+10
-58
lines changed

1 file changed

+10
-58
lines changed

auto-imports.d.ts

+10-58
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// @ts-nocheck
44
// noinspection JSUnusedGlobalSymbols
55
// Generated by unplugin-auto-import
6+
// biome-ignore lint: disable
67
export {}
78
declare global {
89
const EffectScope: typeof import('vue')['EffectScope']
@@ -35,6 +36,7 @@ declare global {
3536
const onServerPrefetch: typeof import('vue')['onServerPrefetch']
3637
const onUnmounted: typeof import('vue')['onUnmounted']
3738
const onUpdated: typeof import('vue')['onUpdated']
39+
const onWatcherCleanup: typeof import('vue')['onWatcherCleanup']
3840
const provide: typeof import('vue')['provide']
3941
const reactive: typeof import('vue')['reactive']
4042
const readonly: typeof import('vue')['readonly']
@@ -52,7 +54,10 @@ declare global {
5254
const useAttrs: typeof import('vue')['useAttrs']
5355
const useCssModule: typeof import('vue')['useCssModule']
5456
const useCssVars: typeof import('vue')['useCssVars']
57+
const useId: typeof import('vue')['useId']
58+
const useModel: typeof import('vue')['useModel']
5559
const useSlots: typeof import('vue')['useSlots']
60+
const useTemplateRef: typeof import('vue')['useTemplateRef']
5661
const watch: typeof import('vue')['watch']
5762
const watchEffect: typeof import('vue')['watchEffect']
5863
const watchPostEffect: typeof import('vue')['watchPostEffect']
@@ -61,7 +66,7 @@ declare global {
6166
// for type re-export
6267
declare global {
6368
// @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'
6570
import('vue')
6671
}
6772
// for vue template auto import
@@ -99,6 +104,7 @@ declare module 'vue' {
99104
readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
100105
readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
101106
readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
107+
readonly onWatcherCleanup: UnwrapRef<typeof import('vue')['onWatcherCleanup']>
102108
readonly provide: UnwrapRef<typeof import('vue')['provide']>
103109
readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
104110
readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
@@ -116,64 +122,10 @@ declare module 'vue' {
116122
readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
117123
readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
118124
readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
125+
readonly useId: UnwrapRef<typeof import('vue')['useId']>
126+
readonly useModel: UnwrapRef<typeof import('vue')['useModel']>
119127
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']>
177129
readonly watch: UnwrapRef<typeof import('vue')['watch']>
178130
readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
179131
readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>

0 commit comments

Comments
 (0)