|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
/* eslint-disable */
|
|
|
|
|
/* prettier-ignore */
|
|
|
|
|
// @ts-nocheck
|
|
|
|
|
// noinspection JSUnusedGlobalSymbols
|
|
|
|
|
// Generated by unplugin-auto-import
|
|
|
|
|
export {}
|
|
|
|
|
declare global {
|
|
|
|
@ -50,9 +51,14 @@ declare global {
|
|
|
|
|
const isReactive: typeof import('vue')['isReactive']
|
|
|
|
|
const isReadonly: typeof import('vue')['isReadonly']
|
|
|
|
|
const isRef: typeof import('vue')['isRef']
|
|
|
|
|
const login: typeof import('./api/auth/auth')['login']
|
|
|
|
|
const loginByCode: typeof import('./api/auth/auth')['loginByCode']
|
|
|
|
|
const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable']
|
|
|
|
|
const markRaw: typeof import('vue')['markRaw']
|
|
|
|
|
const nextTick: typeof import('vue')['nextTick']
|
|
|
|
|
const oauthLogin: typeof import('./api/auth/auth')['oauthLogin']
|
|
|
|
|
const oauthLoginByCode: typeof import('./api/auth/auth')['oauthLoginByCode']
|
|
|
|
|
const oauthLoginByPhone: typeof import('./api/auth/auth')['oauthLoginByPhone']
|
|
|
|
|
const onActivated: typeof import('vue')['onActivated']
|
|
|
|
|
const onBeforeMount: typeof import('vue')['onBeforeMount']
|
|
|
|
|
const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave']
|
|
|
|
@ -88,6 +94,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 register: typeof import('./api/auth/auth')['register']
|
|
|
|
|
const resolveComponent: typeof import('vue')['resolveComponent']
|
|
|
|
|
const resolveRef: typeof import('@vueuse/core')['resolveRef']
|
|
|
|
|
const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
|
|
|
|
@ -307,7 +314,7 @@ declare global {
|
|
|
|
|
// for type re-export
|
|
|
|
|
declare global {
|
|
|
|
|
// @ts-ignore
|
|
|
|
|
export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
|
|
|
|
|
export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue'
|
|
|
|
|
}
|
|
|
|
|
// for vue template auto import
|
|
|
|
|
import { UnwrapRef } from 'vue'
|
|
|
|
@ -346,7 +353,6 @@ declare module 'vue' {
|
|
|
|
|
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
|
|
|
|
|
readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
|
|
|
|
|
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
|
|
|
|
|
readonly envD: UnwrapRef<typeof import('./types/env.d')['default']>
|
|
|
|
|
readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
|
|
|
|
|
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
|
|
|
|
|
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
|
|
|
|
@ -359,9 +365,14 @@ declare module 'vue' {
|
|
|
|
|
readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
|
|
|
|
|
readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
|
|
|
|
|
readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
|
|
|
|
|
readonly login: UnwrapRef<typeof import('./api/auth/auth')['login']>
|
|
|
|
|
readonly loginByCode: UnwrapRef<typeof import('./api/auth/auth')['loginByCode']>
|
|
|
|
|
readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
|
|
|
|
|
readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
|
|
|
|
|
readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
|
|
|
|
|
readonly oauthLogin: UnwrapRef<typeof import('./api/auth/auth')['oauthLogin']>
|
|
|
|
|
readonly oauthLoginByCode: UnwrapRef<typeof import('./api/auth/auth')['oauthLoginByCode']>
|
|
|
|
|
readonly oauthLoginByPhone: UnwrapRef<typeof import('./api/auth/auth')['oauthLoginByPhone']>
|
|
|
|
|
readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
|
|
|
|
|
readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
|
|
|
|
|
readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
|
|
|
|
@ -397,6 +408,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 register: UnwrapRef<typeof import('./api/auth/auth')['register']>
|
|
|
|
|
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
|
|
|
|
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
|
|
|
|
|
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
|
|
|
|
@ -649,7 +661,6 @@ declare module '@vue/runtime-core' {
|
|
|
|
|
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
|
|
|
|
|
readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
|
|
|
|
|
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
|
|
|
|
|
readonly envD: UnwrapRef<typeof import('./types/env.d')['default']>
|
|
|
|
|
readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
|
|
|
|
|
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
|
|
|
|
|
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
|
|
|
|
@ -662,9 +673,14 @@ declare module '@vue/runtime-core' {
|
|
|
|
|
readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
|
|
|
|
|
readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
|
|
|
|
|
readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
|
|
|
|
|
readonly login: UnwrapRef<typeof import('./api/auth/auth')['login']>
|
|
|
|
|
readonly loginByCode: UnwrapRef<typeof import('./api/auth/auth')['loginByCode']>
|
|
|
|
|
readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
|
|
|
|
|
readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
|
|
|
|
|
readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
|
|
|
|
|
readonly oauthLogin: UnwrapRef<typeof import('./api/auth/auth')['oauthLogin']>
|
|
|
|
|
readonly oauthLoginByCode: UnwrapRef<typeof import('./api/auth/auth')['oauthLoginByCode']>
|
|
|
|
|
readonly oauthLoginByPhone: UnwrapRef<typeof import('./api/auth/auth')['oauthLoginByPhone']>
|
|
|
|
|
readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
|
|
|
|
|
readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
|
|
|
|
|
readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
|
|
|
|
@ -700,6 +716,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 register: UnwrapRef<typeof import('./api/auth/auth')['register']>
|
|
|
|
|
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
|
|
|
|
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
|
|
|
|
|
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
|
|
|
|
|