|
@@ -35,6 +35,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']
|
|
@@ -52,7 +53,10 @@ 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 useModel: typeof import('vue')['useModel']
|
|
|
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']
|
|
@@ -61,6 +65,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')
|
|
|
}
|