|
@@ -5,6 +5,7 @@
|
|
|
export {}
|
|
|
declare global {
|
|
|
const EffectScope: typeof import('vue')['EffectScope']
|
|
|
+ const REQUEST: typeof import('./src/utils/request')['REQUEST']
|
|
|
const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
|
|
|
const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
|
|
|
const computed: typeof import('vue')['computed']
|
|
@@ -79,6 +80,7 @@ declare global {
|
|
|
const refDefault: typeof import('@vueuse/core')['refDefault']
|
|
|
const refThrottled: typeof import('@vueuse/core')['refThrottled']
|
|
|
const refWithControl: typeof import('@vueuse/core')['refWithControl']
|
|
|
+ const request: typeof import('./src/utils/request')['default']
|
|
|
const resolveComponent: typeof import('vue')['resolveComponent']
|
|
|
const resolveRef: typeof import('@vueuse/core')['resolveRef']
|
|
|
const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
|
|
@@ -292,6 +294,7 @@ import { UnwrapRef } from 'vue'
|
|
|
declare module 'vue' {
|
|
|
interface ComponentCustomProperties {
|
|
|
readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
|
|
|
+ readonly REQUEST: UnwrapRef<typeof import('./src/utils/request')['REQUEST']>
|
|
|
readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
|
|
|
readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
|
|
|
readonly computed: UnwrapRef<typeof import('vue')['computed']>
|
|
@@ -366,6 +369,7 @@ declare module 'vue' {
|
|
|
readonly refDefault: UnwrapRef<typeof import('@vueuse/core')['refDefault']>
|
|
|
readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
|
|
|
readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
|
|
|
+ readonly request: UnwrapRef<typeof import('./src/utils/request')['default']>
|
|
|
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
|
|
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
|
|
|
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
|
|
@@ -573,6 +577,7 @@ declare module 'vue' {
|
|
|
declare module '@vue/runtime-core' {
|
|
|
interface ComponentCustomProperties {
|
|
|
readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
|
|
|
+ readonly REQUEST: UnwrapRef<typeof import('./src/utils/request')['REQUEST']>
|
|
|
readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
|
|
|
readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
|
|
|
readonly computed: UnwrapRef<typeof import('vue')['computed']>
|
|
@@ -647,6 +652,7 @@ declare module '@vue/runtime-core' {
|
|
|
readonly refDefault: UnwrapRef<typeof import('@vueuse/core')['refDefault']>
|
|
|
readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
|
|
|
readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
|
|
|
+ readonly request: UnwrapRef<typeof import('./src/utils/request')['default']>
|
|
|
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
|
|
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
|
|
|
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
|