|
|
@@ -35,7 +35,6 @@ declare global {
|
|
|
const extendRef: typeof import('@vueuse/core')['extendRef']
|
|
|
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
|
|
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
|
|
- const getSafeHeight: typeof import('./utils/index')['getSafeHeight']
|
|
|
const h: typeof import('vue')['h']
|
|
|
const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
|
|
|
const inject: typeof import('vue')['inject']
|
|
|
@@ -133,6 +132,7 @@ declare global {
|
|
|
const until: typeof import('@vueuse/core')['until']
|
|
|
const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
|
|
|
const useAnimate: typeof import('@vueuse/core')['useAnimate']
|
|
|
+ const useAppStore: typeof import('./stores/app')['useAppStore']
|
|
|
const useArrayDifference: typeof import('@vueuse/core')['useArrayDifference']
|
|
|
const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery']
|
|
|
const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter']
|
|
|
@@ -352,7 +352,6 @@ declare module 'vue' {
|
|
|
readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
|
|
|
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
|
|
|
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
|
|
|
- readonly getSafeHeight: UnwrapRef<typeof import('./utils/index')['getSafeHeight']>
|
|
|
readonly h: UnwrapRef<typeof import('vue')['h']>
|
|
|
readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
|
|
|
readonly inject: UnwrapRef<typeof import('vue')['inject']>
|
|
|
@@ -450,6 +449,7 @@ declare module 'vue' {
|
|
|
readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
|
|
|
readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
|
|
|
readonly useAnimate: UnwrapRef<typeof import('@vueuse/core')['useAnimate']>
|
|
|
+ readonly useAppStore: UnwrapRef<typeof import('./stores/app')['useAppStore']>
|
|
|
readonly useArrayDifference: UnwrapRef<typeof import('@vueuse/core')['useArrayDifference']>
|
|
|
readonly useArrayEvery: UnwrapRef<typeof import('@vueuse/core')['useArrayEvery']>
|
|
|
readonly useArrayFilter: UnwrapRef<typeof import('@vueuse/core')['useArrayFilter']>
|
|
|
@@ -611,6 +611,7 @@ declare module 'vue' {
|
|
|
readonly useWindowFocus: UnwrapRef<typeof import('@vueuse/core')['useWindowFocus']>
|
|
|
readonly useWindowScroll: UnwrapRef<typeof import('@vueuse/core')['useWindowScroll']>
|
|
|
readonly useWindowSize: UnwrapRef<typeof import('@vueuse/core')['useWindowSize']>
|
|
|
+ readonly utils: UnwrapRef<typeof import('./utils/index')['default']>
|
|
|
readonly watch: UnwrapRef<typeof import('vue')['watch']>
|
|
|
readonly watchArray: UnwrapRef<typeof import('@vueuse/core')['watchArray']>
|
|
|
readonly watchAtMost: UnwrapRef<typeof import('@vueuse/core')['watchAtMost']>
|