|
|
@ -3,6 +3,7 @@ |
|
|
|
// @ts-nocheck
|
|
|
|
// noinspection JSUnusedGlobalSymbols
|
|
|
|
// Generated by unplugin-auto-import
|
|
|
|
// biome-ignore lint: disable
|
|
|
|
export {} |
|
|
|
declare global { |
|
|
|
const EffectScope: typeof import('vue')['EffectScope'] |
|
|
@ -37,6 +38,7 @@ declare global { |
|
|
|
const onServerPrefetch: typeof import('vue')['onServerPrefetch'] |
|
|
|
const onUnmounted: typeof import('vue')['onUnmounted'] |
|
|
|
const onUpdated: typeof import('vue')['onUpdated'] |
|
|
|
const onWatcherCleanup: typeof import('vue')['onWatcherCleanup'] |
|
|
|
const provide: typeof import('vue')['provide'] |
|
|
|
const reactive: typeof import('vue')['reactive'] |
|
|
|
const readonly: typeof import('vue')['readonly'] |
|
|
@ -54,10 +56,13 @@ declare global { |
|
|
|
const useAttrs: typeof import('vue')['useAttrs'] |
|
|
|
const useCssModule: typeof import('vue')['useCssModule'] |
|
|
|
const useCssVars: typeof import('vue')['useCssVars'] |
|
|
|
const useId: typeof import('vue')['useId'] |
|
|
|
const useLink: typeof import('vue-router')['useLink'] |
|
|
|
const useModel: typeof import('vue')['useModel'] |
|
|
|
const useRoute: typeof import('vue-router')['useRoute'] |
|
|
|
const useRouter: typeof import('vue-router')['useRouter'] |
|
|
|
const useSlots: typeof import('vue')['useSlots'] |
|
|
|
const useTemplateRef: typeof import('vue')['useTemplateRef'] |
|
|
|
const watch: typeof import('vue')['watch'] |
|
|
|
const watchEffect: typeof import('vue')['watchEffect'] |
|
|
|
const watchPostEffect: typeof import('vue')['watchPostEffect'] |
|
|
@ -66,6 +71,6 @@ declare global { |
|
|
|
// for type re-export
|
|
|
|
declare global { |
|
|
|
// @ts-ignore
|
|
|
|
export type { Component, ComponentPublicInstance, ComputedRef, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue' |
|
|
|
export type { Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue' |
|
|
|
import('vue') |
|
|
|
} |
|
|
|