|
@@ -40,7 +40,6 @@ declare global {
|
|
|
const ref: typeof import('vue')['ref']
|
|
|
const required: typeof import('@/utils/formRules')['required']
|
|
|
const resolveComponent: typeof import('vue')['resolveComponent']
|
|
|
- const resolveDirective: typeof import('vue')['resolveDirective']
|
|
|
const shallowReactive: typeof import('vue')['shallowReactive']
|
|
|
const shallowReadonly: typeof import('vue')['shallowReadonly']
|
|
|
const shallowRef: typeof import('vue')['shallowRef']
|
|
@@ -65,3 +64,8 @@ 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'
|
|
|
+}
|