|
@@ -31,13 +31,26 @@ declare global {
|
|
|
const defineComponent: typeof import('vue')['defineComponent']
|
|
|
const defineLoader: typeof import('vue-router/auto')['defineLoader']
|
|
|
const definePage: typeof import('unplugin-vue-router/runtime')['definePage']
|
|
|
+ const deleteEbook: typeof import('./src/composables/ebook')['deleteEbook']
|
|
|
+ const deletedoc: typeof import('./src/composables/doc')['deletedoc']
|
|
|
+ const docDialogVisible: typeof import('./src/composables/doc')['docDialogVisible']
|
|
|
+ const docList: typeof import('./src/composables/doc')['docList']
|
|
|
+ const docListLoading: typeof import('./src/composables/doc')['docListLoading']
|
|
|
+ const docSelectedList: typeof import('./src/composables/doc')['docSelectedList']
|
|
|
+ const downloadFile: typeof import('./src/composables/index')['downloadFile']
|
|
|
const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
|
|
|
+ const ebookDialogVisible: typeof import('./src/composables/ebook')['ebookDialogVisible']
|
|
|
+ const ebookList: typeof import('./src/composables/ebook')['ebookList']
|
|
|
+ const ebookListLoading: typeof import('./src/composables/ebook')['ebookListLoading']
|
|
|
+ const ebookSelectedList: typeof import('./src/composables/ebook')['ebookSelectedList']
|
|
|
const effectScope: typeof import('vue')['effectScope']
|
|
|
const extendRef: typeof import('@vueuse/core')['extendRef']
|
|
|
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
|
|
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
|
|
+ const getFileType: typeof import('./src/composables/index')['getFileType']
|
|
|
const h: typeof import('vue')['h']
|
|
|
const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
|
|
|
+ const inDebug: typeof import('./src/composables/index')['inDebug']
|
|
|
const inject: typeof import('vue')['inject']
|
|
|
const injectLocal: typeof import('@vueuse/core')['injectLocal']
|
|
|
const isDark: typeof import('./src/composables/dark')['isDark']
|
|
@@ -84,9 +97,16 @@ declare global {
|
|
|
const refDefault: typeof import('@vueuse/core')['refDefault']
|
|
|
const refThrottled: typeof import('@vueuse/core')['refThrottled']
|
|
|
const refWithControl: typeof import('@vueuse/core')['refWithControl']
|
|
|
+ const requestDocList: typeof import('./src/composables/doc')['requestDocList']
|
|
|
+ const requestEbookList: typeof import('./src/composables/ebook')['requestEbookList']
|
|
|
+ const requestWorkList: typeof import('./src/composables/work')['requestWorkList']
|
|
|
+ const requestdocList: typeof import('./src/composables/doc')['requestdocList']
|
|
|
const resolveComponent: typeof import('vue')['resolveComponent']
|
|
|
const resolveRef: typeof import('@vueuse/core')['resolveRef']
|
|
|
const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
|
|
|
+ const sendDoc: typeof import('./src/composables/doc')['sendDoc']
|
|
|
+ const sendWork: typeof import('./src/composables/work')['sendWork']
|
|
|
+ const senddoc: typeof import('./src/composables/doc')['senddoc']
|
|
|
const shallowReactive: typeof import('vue')['shallowReactive']
|
|
|
const shallowReadonly: typeof import('vue')['shallowReadonly']
|
|
|
const shallowRef: typeof import('vue')['shallowRef']
|
|
@@ -287,6 +307,10 @@ declare global {
|
|
|
const watchTriggerable: typeof import('@vueuse/core')['watchTriggerable']
|
|
|
const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
|
|
|
const whenever: typeof import('@vueuse/core')['whenever']
|
|
|
+ const workDialogVisible: typeof import('./src/composables/work')['workDialogVisible']
|
|
|
+ const workList: typeof import('./src/composables/work')['workList']
|
|
|
+ const workListLoading: typeof import('./src/composables/work')['workListLoading']
|
|
|
+ const workSelectedList: typeof import('./src/composables/work')['workSelectedList']
|
|
|
}
|
|
|
// for type re-export
|
|
|
declare global {
|
|
@@ -324,13 +348,25 @@ declare module 'vue' {
|
|
|
readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
|
|
|
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
|
|
|
readonly definePage: UnwrapRef<typeof import('unplugin-vue-router/runtime')['definePage']>
|
|
|
+ readonly deleteEbook: UnwrapRef<typeof import('./src/composables/ebook')['deleteEbook']>
|
|
|
+ readonly docDialogVisible: UnwrapRef<typeof import('./src/composables/doc')['docDialogVisible']>
|
|
|
+ readonly docList: UnwrapRef<typeof import('./src/composables/doc')['docList']>
|
|
|
+ readonly docListLoading: UnwrapRef<typeof import('./src/composables/doc')['docListLoading']>
|
|
|
+ readonly docSelectedList: UnwrapRef<typeof import('./src/composables/doc')['docSelectedList']>
|
|
|
+ readonly downloadFile: UnwrapRef<typeof import('./src/composables/index')['downloadFile']>
|
|
|
readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
|
|
|
+ readonly ebookDialogVisible: UnwrapRef<typeof import('./src/composables/ebook')['ebookDialogVisible']>
|
|
|
+ readonly ebookList: UnwrapRef<typeof import('./src/composables/ebook')['ebookList']>
|
|
|
+ readonly ebookListLoading: UnwrapRef<typeof import('./src/composables/ebook')['ebookListLoading']>
|
|
|
+ readonly ebookSelectedList: UnwrapRef<typeof import('./src/composables/ebook')['ebookSelectedList']>
|
|
|
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
|
|
|
readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
|
|
|
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
|
|
|
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
|
|
|
+ readonly getFileType: UnwrapRef<typeof import('./src/composables/index')['getFileType']>
|
|
|
readonly h: UnwrapRef<typeof import('vue')['h']>
|
|
|
readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
|
|
|
+ readonly inDebug: UnwrapRef<typeof import('./src/composables/index')['inDebug']>
|
|
|
readonly inject: UnwrapRef<typeof import('vue')['inject']>
|
|
|
readonly injectLocal: UnwrapRef<typeof import('@vueuse/core')['injectLocal']>
|
|
|
readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
|
|
@@ -376,9 +412,13 @@ 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 requestDocList: UnwrapRef<typeof import('./src/composables/doc')['requestDocList']>
|
|
|
+ readonly requestEbookList: UnwrapRef<typeof import('./src/composables/ebook')['requestEbookList']>
|
|
|
+ readonly requestWorkList: UnwrapRef<typeof import('./src/composables/work')['requestWorkList']>
|
|
|
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
|
|
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
|
|
|
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
|
|
|
+ readonly sendDoc: UnwrapRef<typeof import('./src/composables/doc')['sendDoc']>
|
|
|
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
|
|
|
readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
|
|
|
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
|
|
@@ -578,6 +618,9 @@ declare module 'vue' {
|
|
|
readonly watchTriggerable: UnwrapRef<typeof import('@vueuse/core')['watchTriggerable']>
|
|
|
readonly watchWithFilter: UnwrapRef<typeof import('@vueuse/core')['watchWithFilter']>
|
|
|
readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
|
|
|
+ readonly workDialogVisible: UnwrapRef<typeof import('./src/composables/work')['workDialogVisible']>
|
|
|
+ readonly workList: UnwrapRef<typeof import('./src/composables/work')['workList']>
|
|
|
+ readonly workListLoading: UnwrapRef<typeof import('./src/composables/work')['workListLoading']>
|
|
|
}
|
|
|
}
|
|
|
declare module '@vue/runtime-core' {
|
|
@@ -608,13 +651,25 @@ declare module '@vue/runtime-core' {
|
|
|
readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
|
|
|
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
|
|
|
readonly definePage: UnwrapRef<typeof import('unplugin-vue-router/runtime')['definePage']>
|
|
|
+ readonly deleteEbook: UnwrapRef<typeof import('./src/composables/ebook')['deleteEbook']>
|
|
|
+ readonly docDialogVisible: UnwrapRef<typeof import('./src/composables/doc')['docDialogVisible']>
|
|
|
+ readonly docList: UnwrapRef<typeof import('./src/composables/doc')['docList']>
|
|
|
+ readonly docListLoading: UnwrapRef<typeof import('./src/composables/doc')['docListLoading']>
|
|
|
+ readonly docSelectedList: UnwrapRef<typeof import('./src/composables/doc')['docSelectedList']>
|
|
|
+ readonly downloadFile: UnwrapRef<typeof import('./src/composables/index')['downloadFile']>
|
|
|
readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
|
|
|
+ readonly ebookDialogVisible: UnwrapRef<typeof import('./src/composables/ebook')['ebookDialogVisible']>
|
|
|
+ readonly ebookList: UnwrapRef<typeof import('./src/composables/ebook')['ebookList']>
|
|
|
+ readonly ebookListLoading: UnwrapRef<typeof import('./src/composables/ebook')['ebookListLoading']>
|
|
|
+ readonly ebookSelectedList: UnwrapRef<typeof import('./src/composables/ebook')['ebookSelectedList']>
|
|
|
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
|
|
|
readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
|
|
|
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
|
|
|
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
|
|
|
+ readonly getFileType: UnwrapRef<typeof import('./src/composables/index')['getFileType']>
|
|
|
readonly h: UnwrapRef<typeof import('vue')['h']>
|
|
|
readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
|
|
|
+ readonly inDebug: UnwrapRef<typeof import('./src/composables/index')['inDebug']>
|
|
|
readonly inject: UnwrapRef<typeof import('vue')['inject']>
|
|
|
readonly injectLocal: UnwrapRef<typeof import('@vueuse/core')['injectLocal']>
|
|
|
readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
|
|
@@ -660,9 +715,13 @@ 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 requestDocList: UnwrapRef<typeof import('./src/composables/doc')['requestDocList']>
|
|
|
+ readonly requestEbookList: UnwrapRef<typeof import('./src/composables/ebook')['requestEbookList']>
|
|
|
+ readonly requestWorkList: UnwrapRef<typeof import('./src/composables/work')['requestWorkList']>
|
|
|
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
|
|
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
|
|
|
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
|
|
|
+ readonly sendDoc: UnwrapRef<typeof import('./src/composables/doc')['sendDoc']>
|
|
|
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
|
|
|
readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
|
|
|
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
|
|
@@ -862,5 +921,8 @@ declare module '@vue/runtime-core' {
|
|
|
readonly watchTriggerable: UnwrapRef<typeof import('@vueuse/core')['watchTriggerable']>
|
|
|
readonly watchWithFilter: UnwrapRef<typeof import('@vueuse/core')['watchWithFilter']>
|
|
|
readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
|
|
|
+ readonly workDialogVisible: UnwrapRef<typeof import('./src/composables/work')['workDialogVisible']>
|
|
|
+ readonly workList: UnwrapRef<typeof import('./src/composables/work')['workList']>
|
|
|
+ readonly workListLoading: UnwrapRef<typeof import('./src/composables/work')['workListLoading']>
|
|
|
}
|
|
|
}
|