|
|
@@ -104,10 +104,12 @@ declare global {
|
|
|
const refDefault: typeof import('@vueuse/core')['refDefault']
|
|
|
const refThrottled: typeof import('@vueuse/core')['refThrottled']
|
|
|
const refWithControl: typeof import('@vueuse/core')['refWithControl']
|
|
|
+ const rememberPassword: typeof import('./composables/config')['rememberPassword']
|
|
|
const resolveComponent: typeof import('vue')['resolveComponent']
|
|
|
const resolveRef: typeof import('@vueuse/core')['resolveRef']
|
|
|
const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
|
|
|
const routerKey: typeof import('./composables/provide')['routerKey']
|
|
|
+ const setAppRef: typeof import('./composables/useApp')['setAppRef']
|
|
|
const shallowReactive: typeof import('vue')['shallowReactive']
|
|
|
const shallowReadonly: typeof import('vue')['shallowReadonly']
|
|
|
const shallowRef: typeof import('vue')['shallowRef']
|
|
|
@@ -144,6 +146,7 @@ declare global {
|
|
|
const updateParentKey: typeof import('./composables/provide')['updateParentKey']
|
|
|
const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
|
|
|
const useAnimate: typeof import('@vueuse/core')['useAnimate']
|
|
|
+ const useApp: typeof import('./composables/useApp')['useApp']
|
|
|
const useArrayDifference: typeof import('@vueuse/core')['useArrayDifference']
|
|
|
const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery']
|
|
|
const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter']
|
|
|
@@ -455,6 +458,7 @@ declare module 'vue' {
|
|
|
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
|
|
|
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
|
|
|
readonly routerKey: UnwrapRef<typeof import('./composables/provide')['routerKey']>
|
|
|
+ readonly setAppRef: UnwrapRef<typeof import('./composables/useApp')['setAppRef']>
|
|
|
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
|
|
|
readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
|
|
|
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
|
|
|
@@ -491,6 +495,7 @@ declare module 'vue' {
|
|
|
readonly updateParentKey: UnwrapRef<typeof import('./composables/provide')['updateParentKey']>
|
|
|
readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
|
|
|
readonly useAnimate: UnwrapRef<typeof import('@vueuse/core')['useAnimate']>
|
|
|
+ readonly useApp: UnwrapRef<typeof import('./composables/useApp')['useApp']>
|
|
|
readonly useArrayDifference: UnwrapRef<typeof import('@vueuse/core')['useArrayDifference']>
|
|
|
readonly useArrayEvery: UnwrapRef<typeof import('@vueuse/core')['useArrayEvery']>
|
|
|
readonly useArrayFilter: UnwrapRef<typeof import('@vueuse/core')['useArrayFilter']>
|