|
|
|
@ -1,5 +1,8 @@ |
|
|
|
// Generated by 'unplugin-auto-import'
|
|
|
|
export {}; |
|
|
|
/* eslint-disable */ |
|
|
|
/* prettier-ignore */ |
|
|
|
// @ts-nocheck
|
|
|
|
// Generated by unplugin-auto-import
|
|
|
|
export {} |
|
|
|
declare global { |
|
|
|
const EffectScope: typeof import('vue')['EffectScope']; |
|
|
|
const computed: typeof import('vue')['computed']; |
|
|
|
@ -20,6 +23,8 @@ declare global { |
|
|
|
const nextTick: typeof import('vue')['nextTick']; |
|
|
|
const onActivated: typeof import('vue')['onActivated']; |
|
|
|
const onBeforeMount: typeof import('vue')['onBeforeMount']; |
|
|
|
const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave']; |
|
|
|
const onBeforeRouteUpdate: typeof import('vue-router')['onBeforeRouteUpdate']; |
|
|
|
const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']; |
|
|
|
const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']; |
|
|
|
const onDeactivated: typeof import('vue')['onDeactivated']; |
|
|
|
@ -42,11 +47,13 @@ declare global { |
|
|
|
const toRaw: typeof import('vue')['toRaw']; |
|
|
|
const toRef: typeof import('vue')['toRef']; |
|
|
|
const toRefs: typeof import('vue')['toRefs']; |
|
|
|
const toValue: typeof import('vue')['toValue']; |
|
|
|
const triggerRef: typeof import('vue')['triggerRef']; |
|
|
|
const unref: typeof import('vue')['unref']; |
|
|
|
const useAttrs: typeof import('vue')['useAttrs']; |
|
|
|
const useCssModule: typeof import('vue')['useCssModule']; |
|
|
|
const useCssVars: typeof import('vue')['useCssVars']; |
|
|
|
const useLink: typeof import('vue-router')['useLink']; |
|
|
|
const useRoute: typeof import('vue-router')['useRoute']; |
|
|
|
const useRouter: typeof import('vue-router')['useRouter']; |
|
|
|
const useSlots: typeof import('vue')['useSlots']; |
|
|
|
@ -55,3 +62,16 @@ declare global { |
|
|
|
const watchPostEffect: typeof import('vue')['watchPostEffect']; |
|
|
|
const watchSyncEffect: typeof import('vue')['watchSyncEffect']; |
|
|
|
} |
|
|
|
// for type re-export
|
|
|
|
declare global { |
|
|
|
// @ts-ignore
|
|
|
|
export type { |
|
|
|
Component, |
|
|
|
ComponentPublicInstance, |
|
|
|
ComputedRef, |
|
|
|
InjectionKey, |
|
|
|
PropType, |
|
|
|
Ref, |
|
|
|
VNode, |
|
|
|
} from 'vue'; |
|
|
|
} |
|
|
|
|