|
|
@@ -22,6 +22,7 @@ declare global {
|
|
|
const createInjectionState: typeof import('@vueuse/core')['createInjectionState']
|
|
|
const createPinia: typeof import('pinia')['createPinia']
|
|
|
const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn']
|
|
|
+ const createRef: typeof import('@vueuse/core')['createRef']
|
|
|
const createReusableTemplate: typeof import('@vueuse/core')['createReusableTemplate']
|
|
|
const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable']
|
|
|
const createTemplatePromise: typeof import('@vueuse/core')['createTemplatePromise']
|
|
|
@@ -63,6 +64,7 @@ declare global {
|
|
|
const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
|
|
|
const onClickOutside: typeof import('@vueuse/core')['onClickOutside']
|
|
|
const onDeactivated: typeof import('vue')['onDeactivated']
|
|
|
+ const onElementRemoval: typeof import('@vueuse/core')['onElementRemoval']
|
|
|
const onErrorCaptured: typeof import('vue')['onErrorCaptured']
|
|
|
const onKeyStroke: typeof import('@vueuse/core')['onKeyStroke']
|
|
|
const onLongPress: typeof import('@vueuse/core')['onLongPress']
|
|
|
@@ -74,6 +76,7 @@ declare global {
|
|
|
const onStartTyping: typeof import('@vueuse/core')['onStartTyping']
|
|
|
const onUnmounted: typeof import('vue')['onUnmounted']
|
|
|
const onUpdated: typeof import('vue')['onUpdated']
|
|
|
+ const onWatcherCleanup: typeof import('vue')['onWatcherCleanup']
|
|
|
const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
|
|
|
const provide: typeof import('vue')['provide']
|
|
|
const provideLocal: typeof import('@vueuse/core')['provideLocal']
|
|
|
@@ -147,6 +150,7 @@ declare global {
|
|
|
const useCloned: typeof import('@vueuse/core')['useCloned']
|
|
|
const useColorMode: typeof import('@vueuse/core')['useColorMode']
|
|
|
const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog']
|
|
|
+ const useCountdown: typeof import('@vueuse/core')['useCountdown']
|
|
|
const useCounter: typeof import('@vueuse/core')['useCounter']
|
|
|
const useCssModule: typeof import('vue')['useCssModule']
|
|
|
const useCssVar: typeof import('@vueuse/core')['useCssVar']
|
|
|
@@ -185,6 +189,7 @@ declare global {
|
|
|
const useFullscreen: typeof import('@vueuse/core')['useFullscreen']
|
|
|
const useGamepad: typeof import('@vueuse/core')['useGamepad']
|
|
|
const useGeolocation: typeof import('@vueuse/core')['useGeolocation']
|
|
|
+ const useId: typeof import('vue')['useId']
|
|
|
const useIdle: typeof import('@vueuse/core')['useIdle']
|
|
|
const useImage: typeof import('@vueuse/core')['useImage']
|
|
|
const useInfiniteScroll: typeof import('@vueuse/core')['useInfiniteScroll']
|
|
|
@@ -201,6 +206,7 @@ declare global {
|
|
|
const useMediaQuery: typeof import('@vueuse/core')['useMediaQuery']
|
|
|
const useMemoize: typeof import('@vueuse/core')['useMemoize']
|
|
|
const useMemory: typeof import('@vueuse/core')['useMemory']
|
|
|
+ const useModel: typeof import('vue')['useModel']
|
|
|
const useMounted: typeof import('@vueuse/core')['useMounted']
|
|
|
const useMouse: typeof import('@vueuse/core')['useMouse']
|
|
|
const useMouseInElement: typeof import('@vueuse/core')['useMouseInElement']
|
|
|
@@ -225,12 +231,14 @@ declare global {
|
|
|
const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark']
|
|
|
const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages']
|
|
|
const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion']
|
|
|
+ const usePreferredReducedTransparency: typeof import('@vueuse/core')['usePreferredReducedTransparency']
|
|
|
const usePrevious: typeof import('@vueuse/core')['usePrevious']
|
|
|
const useRafFn: typeof import('@vueuse/core')['useRafFn']
|
|
|
const useRefHistory: typeof import('@vueuse/core')['useRefHistory']
|
|
|
const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver']
|
|
|
const useRoute: typeof import('vue-router')['useRoute']
|
|
|
const useRouter: typeof import('vue-router')['useRouter']
|
|
|
+ const useSSRWidth: typeof import('@vueuse/core')['useSSRWidth']
|
|
|
const useScreenOrientation: typeof import('@vueuse/core')['useScreenOrientation']
|
|
|
const useScreenSafeArea: typeof import('@vueuse/core')['useScreenSafeArea']
|
|
|
const useScriptTag: typeof import('@vueuse/core')['useScriptTag']
|
|
|
@@ -248,6 +256,7 @@ declare global {
|
|
|
const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
|
|
|
const useSupported: typeof import('@vueuse/core')['useSupported']
|
|
|
const useSwipe: typeof import('@vueuse/core')['useSwipe']
|
|
|
+ const useTemplateRef: typeof import('vue')['useTemplateRef']
|
|
|
const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
|
|
|
const useTextDirection: typeof import('@vueuse/core')['useTextDirection']
|
|
|
const useTextSelection: typeof import('@vueuse/core')['useTextSelection']
|
|
|
@@ -299,6 +308,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')
|
|
|
}
|