@chenghongyu/xpt-file-viewer 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/extensions.json +3 -0
- package/README.md +5 -0
- package/auto-imports.d.ts +12 -0
- package/components.d.ts +45 -0
- package/dist.zip +0 -0
- package/index.html +13 -0
- package/package.json +100 -0
- package/presets/eslint/.eslintrc-auto-import.json +462 -0
- package/presets/plugins/html.ts +14 -0
- package/presets/shared/env.ts +46 -0
- package/presets/shared/resolvers.ts +29 -0
- package/presets/tov.ts +132 -0
- package/presets/types/auto-imports.d.ts +806 -0
- package/presets/types/components.d.ts +164 -0
- package/presets/types/env.d.ts +17 -0
- package/public/favicon.svg +1 -0
- package/public/icons.svg +24 -0
- package/public/testfile/README.md +5 -0
- package/public/testfile/useFileContextMenu.js +74 -0
- package/public/testfile//345/217/221/347/245/250.pdf +0 -0
- package/public/testfile//346/216/245/346/224/266/345/207/275.docx +0 -0
- package/public/testfile//350/247/204/346/240/274/345/236/213/345/217/2671.txt +263 -0
- package/public/testfile//350/247/206/351/242/2211.mp4 +0 -0
- package/public/testfile//351/237/263/351/242/2211.mp3 +0 -0
- package/src/App.vue +8 -0
- package/src/api/admin/admin-2fa.js +18 -0
- package/src/api/admin/admin-download-log.js +37 -0
- package/src/api/admin/admin-login-log.js +9 -0
- package/src/api/admin/admin-permission.js +9 -0
- package/src/api/admin/admin-setting.js +121 -0
- package/src/api/admin/admin-share.js +20 -0
- package/src/api/admin/admin-short-link.js +49 -0
- package/src/api/admin/admin-sso.js +38 -0
- package/src/api/admin/admin-storage.js +189 -0
- package/src/api/admin/admin-user.js +61 -0
- package/src/api/home/common.js +9 -0
- package/src/api/home/file-operator.js +89 -0
- package/src/api/home/home.js +87 -0
- package/src/api/home/install.js +18 -0
- package/src/api/home/login.js +9 -0
- package/src/api/home/only-office.js +10 -0
- package/src/api/home/share.js +115 -0
- package/src/api/home/user.js +74 -0
- package/src/api/tools/tools-115.js +17 -0
- package/src/api/tools/tools-gd.js +13 -0
- package/src/api/tools/tools-s3.js +25 -0
- package/src/api/tools/tools-sharepoint.js +19 -0
- package/src/assets/hero.png +0 -0
- package/src/assets/icons/401.svg +1 -0
- package/src/assets/icons/403.svg +45 -0
- package/src/assets/icons/404.svg +1 -0
- package/src/assets/icons/500.svg +1 -0
- package/src/assets/icons/admin-login.svg +1 -0
- package/src/assets/icons/document.svg +1 -0
- package/src/assets/icons/empty.svg +145 -0
- package/src/assets/icons/file-type-apk.svg +1 -0
- package/src/assets/icons/file-type-archive.svg +1 -0
- package/src/assets/icons/file-type-audio.svg +1 -0
- package/src/assets/icons/file-type-back.svg +1 -0
- package/src/assets/icons/file-type-css.svg +1 -0
- package/src/assets/icons/file-type-deb.svg +1 -0
- package/src/assets/icons/file-type-dll.svg +1 -0
- package/src/assets/icons/file-type-doc.svg +1 -0
- package/src/assets/icons/file-type-document.svg +1 -0
- package/src/assets/icons/file-type-docx.svg +1 -0
- package/src/assets/icons/file-type-exe.svg +1 -0
- package/src/assets/icons/file-type-expression.svg +1 -0
- package/src/assets/icons/file-type-file.svg +1 -0
- package/src/assets/icons/file-type-folder.svg +1 -0
- package/src/assets/icons/file-type-html.svg +1 -0
- package/src/assets/icons/file-type-image.svg +1 -0
- package/src/assets/icons/file-type-java.svg +1 -0
- package/src/assets/icons/file-type-js.svg +1 -0
- package/src/assets/icons/file-type-less.svg +1 -0
- package/src/assets/icons/file-type-md.svg +1 -0
- package/src/assets/icons/file-type-office.svg +1 -0
- package/src/assets/icons/file-type-pdf.svg +1 -0
- package/src/assets/icons/file-type-php.svg +1 -0
- package/src/assets/icons/file-type-ppt.svg +1 -0
- package/src/assets/icons/file-type-pptx.svg +1 -0
- package/src/assets/icons/file-type-py.svg +1 -0
- package/src/assets/icons/file-type-rb.svg +1 -0
- package/src/assets/icons/file-type-root.svg +1 -0
- package/src/assets/icons/file-type-rpm.svg +1 -0
- package/src/assets/icons/file-type-rust.svg +1 -0
- package/src/assets/icons/file-type-script.svg +1 -0
- package/src/assets/icons/file-type-text.svg +1 -0
- package/src/assets/icons/file-type-three3d.svg +5 -0
- package/src/assets/icons/file-type-vbs.svg +1 -0
- package/src/assets/icons/file-type-video.svg +1 -0
- package/src/assets/icons/file-type-xls.svg +1 -0
- package/src/assets/icons/file-type-xlsx.svg +1 -0
- package/src/assets/icons/file-type-xml.svg +1 -0
- package/src/assets/icons/file-type-yaml.svg +1 -0
- package/src/assets/icons/file-upload.svg +1 -0
- package/src/assets/icons/github.svg +1 -0
- package/src/assets/icons/install-step.svg +40 -0
- package/src/assets/icons/reset-password.svg +1 -0
- package/src/assets/icons/storage-aliyun.svg +1 -0
- package/src/assets/icons/storage-baidu.svg +1 -0
- package/src/assets/icons/storage-doge-cloud.svg +207 -0
- package/src/assets/icons/storage-ftp.svg +13 -0
- package/src/assets/icons/storage-google-drive.svg +8 -0
- package/src/assets/icons/storage-huawei.svg +1 -0
- package/src/assets/icons/storage-local.svg +11 -0
- package/src/assets/icons/storage-minio.svg +1 -0
- package/src/assets/icons/storage-onedrive-china.svg +18 -0
- package/src/assets/icons/storage-onedrive.svg +4 -0
- package/src/assets/icons/storage-open115.svg +23 -0
- package/src/assets/icons/storage-qiniu.svg +1 -0
- package/src/assets/icons/storage-s3.svg +5 -0
- package/src/assets/icons/storage-sftp.svg +13 -0
- package/src/assets/icons/storage-sharepoint-china.svg +23 -0
- package/src/assets/icons/storage-sharepoint.svg +1 -0
- package/src/assets/icons/storage-tencent.svg +9 -0
- package/src/assets/icons/storage-ufile.svg +14 -0
- package/src/assets/icons/storage-upyun.svg +1 -0
- package/src/assets/icons/storage-webdav.svg +1 -0
- package/src/assets/icons/upload.svg +50 -0
- package/src/assets/icons/zfile-basic.svg +17 -0
- package/src/assets/icons/zfile-horizontal.svg +16 -0
- package/src/assets/icons/zfile.svg +1 -0
- package/src/assets/vite.svg +1 -0
- package/src/assets/vue.svg +1 -0
- package/src/components/HelloWorld.vue +319 -0
- package/src/components/common/QrCodePreview.vue +118 -0
- package/src/components/common/dialog/ZDialog.vue +171 -0
- package/src/components/common/dialog/types.ts +19 -0
- package/src/components/common/dialog/useDialog.ts +18 -0
- package/src/components/common/dialog/useDialogWithForm.ts +21 -0
- package/src/components/copy.vue +133 -0
- package/src/components/file/preview/AudioPlayer.vue +333 -0
- package/src/components/file/preview/CopyCode.vue +47 -0
- package/src/components/file/preview/FileGallery.vue +199 -0
- package/src/components/file/preview/ImageViewer.vue +432 -0
- package/src/components/file/preview/KkFileViewer.vue +86 -0
- package/src/components/file/preview/KkFileViewerDialog.vue +42 -0
- package/src/components/file/preview/MarkdownViewer.vue +102 -0
- package/src/components/file/preview/MarkdownViewerAsyncLoading.vue +17 -0
- package/src/components/file/preview/MarkdownViewerDialogAsyncLoading.vue +12 -0
- package/src/components/file/preview/OfficeViewer.vue +76 -0
- package/src/components/file/preview/OfficeViewerDialog.vue +55 -0
- package/src/components/file/preview/PdfViewer.vue +157 -0
- package/src/components/file/preview/PdfViewerDialog.vue +41 -0
- package/src/components/file/preview/TextViewer.vue +232 -0
- package/src/components/file/preview/TextViewerAsyncLoading.vue +22 -0
- package/src/components/file/preview/TextViewerDialog.vue +53 -0
- package/src/components/file/preview/Three3dPreview.vue +114 -0
- package/src/components/file/preview/Three3dPreviewDialog.vue +50 -0
- package/src/components/file/preview/VideoPlayer.vue +341 -0
- package/src/components/file/preview/VideoPlayerAsyncLoading.vue +45 -0
- package/src/components/file/preview/VideoPlayerDialog.vue +51 -0
- package/src/components/file/selectFolder/SelectFolder.vue +208 -0
- package/src/components/file/selectFolder/index.ts +50 -0
- package/src/components/file/selectFolder/types.ts +5 -0
- package/src/components/fileReview/AudioPlayer-copy.vue +333 -0
- package/src/components/fileReview/PdfViewer-copy.vue +157 -0
- package/src/components/fileReview/TextViewer-copy.vue +44 -0
- package/src/components/fileReview/VideoPlayer-copy.vue +341 -0
- package/src/components/messageBox/confirm/confirm.vue +137 -0
- package/src/components/messageBox/confirm/index.ts +27 -0
- package/src/components/messageBox/confirm/types.ts +15 -0
- package/src/components/messageBox/messageBox.ts +9 -0
- package/src/components/messageBox/prompt/index.ts +27 -0
- package/src/components/messageBox/prompt/prompt.vue +178 -0
- package/src/components/messageBox/prompt/types.ts +24 -0
- package/src/components/vue-codemirror/editor.vue +212 -0
- package/src/components/vue-codemirror/encodings.ts +27 -0
- package/src/components/vue-codemirror/index.vue +380 -0
- package/src/components/vue-codemirror/lang-code/cpp/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/css/index.ts +2 -0
- package/src/components/vue-codemirror/lang-code/dockerfile/index.ts +5 -0
- package/src/components/vue-codemirror/lang-code/erlang/index.ts +6 -0
- package/src/components/vue-codemirror/lang-code/go/index.ts +5 -0
- package/src/components/vue-codemirror/lang-code/html/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/java/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/javascript/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/json/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/jsx/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/lua/index.ts +6 -0
- package/src/components/vue-codemirror/lang-code/markdown/index.ts +2 -0
- package/src/components/vue-codemirror/lang-code/mysql/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/nginx/index.ts +6 -0
- package/src/components/vue-codemirror/lang-code/perl/index.ts +5 -0
- package/src/components/vue-codemirror/lang-code/pgsql/index.ts +2 -0
- package/src/components/vue-codemirror/lang-code/php/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/powershell/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/python/index.ts +2 -0
- package/src/components/vue-codemirror/lang-code/r/index.ts +5 -0
- package/src/components/vue-codemirror/lang-code/ruby/index.ts +5 -0
- package/src/components/vue-codemirror/lang-code/rust/index.ts +2 -0
- package/src/components/vue-codemirror/lang-code/shell/index.ts +5 -0
- package/src/components/vue-codemirror/lang-code/sql/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/stylus/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/swift/index.ts +4 -0
- package/src/components/vue-codemirror/lang-code/toml/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/tsx/index.ts +2 -0
- package/src/components/vue-codemirror/lang-code/typescript/index.ts +2 -0
- package/src/components/vue-codemirror/lang-code/vb/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/vbscript/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/xml/index.ts +2 -0
- package/src/components/vue-codemirror/lang-code/yaml/index.ts +3 -0
- package/src/components/vue-codemirror/languages.ts +8 -0
- package/src/components/vue-codemirror/themes.ts +5 -0
- package/src/components/vue-codemirror/toolbar.vue +183 -0
- package/src/components/vue-codemirror/types.ts +12 -0
- package/src/components.d.ts +49 -0
- package/src/composables/admin/layout/admin-layout.js +53 -0
- package/src/composables/admin/link/useLinkSetting.js +16 -0
- package/src/composables/admin/sso/baseSsoConfig.js +54 -0
- package/src/composables/admin/sso/useSsoConfig.js +176 -0
- package/src/composables/admin/storage/storage-copy.js +89 -0
- package/src/composables/admin/storage/storage-filter.js +64 -0
- package/src/composables/admin/storage/storage-list.js +202 -0
- package/src/composables/admin/storage/storage-password.js +101 -0
- package/src/composables/admin/storage/storage-readme.js +102 -0
- package/src/composables/admin/storage/utils/open115-util.js +61 -0
- package/src/composables/admin/useAdminSetting.js +60 -0
- package/src/composables/admin/useClientInfo.js +20 -0
- package/src/composables/admin/user/user-copy.js +79 -0
- package/src/composables/file/useBatchOperatorResult.js +19 -0
- package/src/composables/file/useFileContextMenu.js +74 -0
- package/src/composables/file/useFileData.js +243 -0
- package/src/composables/file/useFileLink.js +175 -0
- package/src/composables/file/useFileLoading.js +41 -0
- package/src/composables/file/useFileLongPressEvent.js +71 -0
- package/src/composables/file/useFileOperator.js +347 -0
- package/src/composables/file/useFilePreview.js +99 -0
- package/src/composables/file/useFilePwd.js +138 -0
- package/src/composables/file/useFileSelect.js +105 -0
- package/src/composables/file/useFileShare.js +39 -0
- package/src/composables/file/useFileUpload.js +1045 -0
- package/src/composables/file/useKkFileViewDialog.js +24 -0
- package/src/composables/file/useOfficeViewerDialog.js +20 -0
- package/src/composables/file/usePdfViewerDialog.js +22 -0
- package/src/composables/file/useShareActions.js +94 -0
- package/src/composables/file/useShareTableOperator.js +84 -0
- package/src/composables/file/useTableOperator.js +211 -0
- package/src/composables/file/useTextViewerDialog.js +22 -0
- package/src/composables/file/useThree3dPreviewDialog.js +23 -0
- package/src/composables/file/useVideoPlayerDialog.js +19 -0
- package/src/composables/header/useHeaderBreadcrumb.js +111 -0
- package/src/composables/header/useHeaderStorageList.js +150 -0
- package/src/composables/header/useSetting.js +58 -0
- package/src/composables/share/useShareData.js +178 -0
- package/src/composables/useDarks.ts +4 -0
- package/src/composables/useRouterData.js +41 -0
- package/src/constant/index.js +193 -0
- package/src/http/index.js +153 -0
- package/src/http/request.js +31 -0
- package/src/main.ts +23 -0
- package/src/stores/file-data.ts +108 -0
- package/src/stores/global-config.ts +115 -0
- package/src/stores/storage-config.ts +123 -0
- package/src/style.css +296 -0
- package/src/styles/admin.scss +91 -0
- package/src/styles/code-editor-variables.scss +52 -0
- package/src/styles/element-plus.scss +22 -0
- package/src/styles/error-page.css +26 -0
- package/src/styles/main.css +142 -0
- package/src/styles/tailwind/index.scss +33 -0
- package/src/utils/index.ts +7 -0
- package/src/utils/models/base.ts +34 -0
- package/src/utils/models/file.ts +95 -0
- package/src/utils/models/path.ts +117 -0
- package/src/utils/models/qrcode.ts +21 -0
- package/src/utils/models/time.ts +132 -0
- package/src/utils/models/util.ts +42 -0
- package/src/utils/models/window.ts +14 -0
- package/stats.html +4950 -0
- package/tsconfig.app.json +16 -0
- package/tsconfig.json +7 -0
- package/tsconfig.node.json +26 -0
- package/vite.config.ts +57 -0
|
@@ -0,0 +1,806 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* prettier-ignore */
|
|
3
|
+
// @ts-nocheck
|
|
4
|
+
// noinspection JSUnusedGlobalSymbols
|
|
5
|
+
// Generated by unplugin-auto-import
|
|
6
|
+
// biome-ignore lint: disable
|
|
7
|
+
export {}
|
|
8
|
+
declare global {
|
|
9
|
+
const EffectScope: typeof import('vue')['EffectScope']
|
|
10
|
+
const ElLoading: typeof import('element-plus/es')['ElLoading']
|
|
11
|
+
const ElMessage: typeof import('element-plus/es')['ElMessage']
|
|
12
|
+
const ElMessageBox: typeof import('element-plus/es')['ElMessageBox']
|
|
13
|
+
const SvgIcon: typeof import('../../src/components/SvgIcon.vue')['default']
|
|
14
|
+
const acceptHMRUpdate: typeof import('pinia')['acceptHMRUpdate']
|
|
15
|
+
const adminLayout: typeof import('../../src/composables/admin/layout/admin-layout.js')['default']
|
|
16
|
+
const allowShortcuts: typeof import('../../src/composables/file/useTableOperator.js')['allowShortcuts']
|
|
17
|
+
const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
|
|
18
|
+
const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
|
|
19
|
+
const baseSsoConfig: typeof import('../../src/composables/admin/sso/baseSsoConfig.js')['baseSsoConfig']
|
|
20
|
+
const buildTableOperator: typeof import('../../src/composables/file/useTableOperator.js')['buildTableOperator']
|
|
21
|
+
const computed: typeof import('vue')['computed']
|
|
22
|
+
const computedAsync: typeof import('@vueuse/core')['computedAsync']
|
|
23
|
+
const computedEager: typeof import('@vueuse/core')['computedEager']
|
|
24
|
+
const computedInject: typeof import('@vueuse/core')['computedInject']
|
|
25
|
+
const computedWithControl: typeof import('@vueuse/core')['computedWithControl']
|
|
26
|
+
const confirm: typeof import('../../src/components/messageBox/confirm/index')['default']
|
|
27
|
+
const constant: typeof import('../../src/constant/index.js')['constant']
|
|
28
|
+
const controlledComputed: typeof import('@vueuse/core')['controlledComputed']
|
|
29
|
+
const controlledRef: typeof import('@vueuse/core')['controlledRef']
|
|
30
|
+
const cpp: typeof import('../../src/components/vue-codemirror/lang-code/cpp/index')['default']
|
|
31
|
+
const createApp: typeof import('vue')['createApp']
|
|
32
|
+
const createEventHook: typeof import('@vueuse/core')['createEventHook']
|
|
33
|
+
const createGlobalState: typeof import('@vueuse/core')['createGlobalState']
|
|
34
|
+
const createInjectionState: typeof import('@vueuse/core')['createInjectionState']
|
|
35
|
+
const createPinia: typeof import('pinia')['createPinia']
|
|
36
|
+
const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn']
|
|
37
|
+
const createReusableTemplate: typeof import('@vueuse/core')['createReusableTemplate']
|
|
38
|
+
const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable']
|
|
39
|
+
const createTemplatePromise: typeof import('@vueuse/core')['createTemplatePromise']
|
|
40
|
+
const createUnrefFn: typeof import('@vueuse/core')['createUnrefFn']
|
|
41
|
+
const css: typeof import('../../src/components/vue-codemirror/lang-code/css/index')['default']
|
|
42
|
+
const customRef: typeof import('vue')['customRef']
|
|
43
|
+
const debouncedRef: typeof import('@vueuse/core')['debouncedRef']
|
|
44
|
+
const debouncedWatch: typeof import('@vueuse/core')['debouncedWatch']
|
|
45
|
+
const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
|
|
46
|
+
const defineComponent: typeof import('vue')['defineComponent']
|
|
47
|
+
const defineStore: typeof import('pinia')['defineStore']
|
|
48
|
+
const dockerfile: typeof import('../../src/components/vue-codemirror/lang-code/dockerfile/index')['default']
|
|
49
|
+
const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
|
|
50
|
+
const effectScope: typeof import('vue')['effectScope']
|
|
51
|
+
const encodings: typeof import('../../src/components/vue-codemirror/encodings')['default']
|
|
52
|
+
const erlang: typeof import('../../src/components/vue-codemirror/lang-code/erlang/index')['default']
|
|
53
|
+
const extendRef: typeof import('@vueuse/core')['extendRef']
|
|
54
|
+
const fileData: typeof import('../../src/stores/file-data')['default']
|
|
55
|
+
const getActivePinia: typeof import('pinia')['getActivePinia']
|
|
56
|
+
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
|
57
|
+
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
|
58
|
+
const globalConfig: typeof import('../../src/stores/global-config')['default']
|
|
59
|
+
const go: typeof import('../../src/components/vue-codemirror/lang-code/go/index')['default']
|
|
60
|
+
const h: typeof import('vue')['h']
|
|
61
|
+
const hasDialog: typeof import('../../src/composables/file/useTableOperator.js')['hasDialog']
|
|
62
|
+
const hasPasswordInputFocus: typeof import('../../src/composables/file/useTableOperator.js')['hasPasswordInputFocus']
|
|
63
|
+
const hasSearchInputFocus: typeof import('../../src/composables/file/useTableOperator.js')['hasSearchInputFocus']
|
|
64
|
+
const hoverBody: typeof import('../../src/composables/file/useTableOperator.js')['hoverBody']
|
|
65
|
+
const html: typeof import('../../src/components/vue-codemirror/lang-code/html/index')['default']
|
|
66
|
+
const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
|
|
67
|
+
const inject: typeof import('vue')['inject']
|
|
68
|
+
const isDefined: typeof import('@vueuse/core')['isDefined']
|
|
69
|
+
const isProxy: typeof import('vue')['isProxy']
|
|
70
|
+
const isReactive: typeof import('vue')['isReactive']
|
|
71
|
+
const isReadonly: typeof import('vue')['isReadonly']
|
|
72
|
+
const isRef: typeof import('vue')['isRef']
|
|
73
|
+
const java: typeof import('../../src/components/vue-codemirror/lang-code/java/index')['default']
|
|
74
|
+
const javascript: typeof import('../../src/components/vue-codemirror/lang-code/javascript/index')['default']
|
|
75
|
+
const json: typeof import('../../src/components/vue-codemirror/lang-code/json/index')['default']
|
|
76
|
+
const jsx: typeof import('../../src/components/vue-codemirror/lang-code/jsx/index')['default']
|
|
77
|
+
const languages: typeof import('../../src/components/vue-codemirror/languages')['default']
|
|
78
|
+
const lua: typeof import('../../src/components/vue-codemirror/lang-code/lua/index')['default']
|
|
79
|
+
const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable']
|
|
80
|
+
const mapActions: typeof import('pinia')['mapActions']
|
|
81
|
+
const mapGetters: typeof import('pinia')['mapGetters']
|
|
82
|
+
const mapState: typeof import('pinia')['mapState']
|
|
83
|
+
const mapStores: typeof import('pinia')['mapStores']
|
|
84
|
+
const mapWritableState: typeof import('pinia')['mapWritableState']
|
|
85
|
+
const markRaw: typeof import('vue')['markRaw']
|
|
86
|
+
const markdown: typeof import('../../src/components/vue-codemirror/lang-code/markdown/index')['default']
|
|
87
|
+
const messageBox: typeof import('../../src/components/messageBox/messageBox')['default']
|
|
88
|
+
const mysql: typeof import('../../src/components/vue-codemirror/lang-code/mysql/index')['default']
|
|
89
|
+
const nextTick: typeof import('vue')['nextTick']
|
|
90
|
+
const nginx: typeof import('../../src/components/vue-codemirror/lang-code/nginx/index')['default']
|
|
91
|
+
const onActivated: typeof import('vue')['onActivated']
|
|
92
|
+
const onBeforeMount: typeof import('vue')['onBeforeMount']
|
|
93
|
+
const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave']
|
|
94
|
+
const onBeforeRouteUpdate: typeof import('vue-router')['onBeforeRouteUpdate']
|
|
95
|
+
const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
|
|
96
|
+
const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
|
|
97
|
+
const onClickOutside: typeof import('@vueuse/core')['onClickOutside']
|
|
98
|
+
const onDeactivated: typeof import('vue')['onDeactivated']
|
|
99
|
+
const onErrorCaptured: typeof import('vue')['onErrorCaptured']
|
|
100
|
+
const onKeyStroke: typeof import('@vueuse/core')['onKeyStroke']
|
|
101
|
+
const onLongPress: typeof import('@vueuse/core')['onLongPress']
|
|
102
|
+
const onMounted: typeof import('vue')['onMounted']
|
|
103
|
+
const onRenderTracked: typeof import('vue')['onRenderTracked']
|
|
104
|
+
const onRenderTriggered: typeof import('vue')['onRenderTriggered']
|
|
105
|
+
const onScopeDispose: typeof import('vue')['onScopeDispose']
|
|
106
|
+
const onServerPrefetch: typeof import('vue')['onServerPrefetch']
|
|
107
|
+
const onStartTyping: typeof import('@vueuse/core')['onStartTyping']
|
|
108
|
+
const onUnmounted: typeof import('vue')['onUnmounted']
|
|
109
|
+
const onUpdated: typeof import('vue')['onUpdated']
|
|
110
|
+
const onWatcherCleanup: typeof import('vue')['onWatcherCleanup']
|
|
111
|
+
const open115Util: typeof import('../../src/composables/admin/storage/utils/open115-util.js')['default']
|
|
112
|
+
const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
|
|
113
|
+
const perl: typeof import('../../src/components/vue-codemirror/lang-code/perl/index')['default']
|
|
114
|
+
const pgsql: typeof import('../../src/components/vue-codemirror/lang-code/pgsql/index')['default']
|
|
115
|
+
const php: typeof import('../../src/components/vue-codemirror/lang-code/php/index')['default']
|
|
116
|
+
const powershell: typeof import('../../src/components/vue-codemirror/lang-code/powershell/index')['default']
|
|
117
|
+
const prompt: typeof import('../../src/components/messageBox/prompt/index')['default']
|
|
118
|
+
const provide: typeof import('vue')['provide']
|
|
119
|
+
const python: typeof import('../../src/components/vue-codemirror/lang-code/python/index')['default']
|
|
120
|
+
const r: typeof import('../../src/components/vue-codemirror/lang-code/r/index')['default']
|
|
121
|
+
const reactify: typeof import('@vueuse/core')['reactify']
|
|
122
|
+
const reactifyObject: typeof import('@vueuse/core')['reactifyObject']
|
|
123
|
+
const reactive: typeof import('vue')['reactive']
|
|
124
|
+
const reactiveComputed: typeof import('@vueuse/core')['reactiveComputed']
|
|
125
|
+
const reactiveOmit: typeof import('@vueuse/core')['reactiveOmit']
|
|
126
|
+
const reactivePick: typeof import('@vueuse/core')['reactivePick']
|
|
127
|
+
const readonly: typeof import('vue')['readonly']
|
|
128
|
+
const ref: typeof import('vue')['ref']
|
|
129
|
+
const refAutoReset: typeof import('@vueuse/core')['refAutoReset']
|
|
130
|
+
const refDebounced: typeof import('@vueuse/core')['refDebounced']
|
|
131
|
+
const refDefault: typeof import('@vueuse/core')['refDefault']
|
|
132
|
+
const refThrottled: typeof import('@vueuse/core')['refThrottled']
|
|
133
|
+
const refWithControl: typeof import('@vueuse/core')['refWithControl']
|
|
134
|
+
const resolveComponent: typeof import('vue')['resolveComponent']
|
|
135
|
+
const resolveRef: typeof import('@vueuse/core')['resolveRef']
|
|
136
|
+
const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
|
|
137
|
+
const ruby: typeof import('../../src/components/vue-codemirror/lang-code/ruby/index')['default']
|
|
138
|
+
const rust: typeof import('../../src/components/vue-codemirror/lang-code/rust/index')['default']
|
|
139
|
+
const selectFolder: typeof import('../../src/components/file/selectFolder/index')['default']
|
|
140
|
+
const setActivePinia: typeof import('pinia')['setActivePinia']
|
|
141
|
+
const setMapStoreSuffix: typeof import('pinia')['setMapStoreSuffix']
|
|
142
|
+
const shallowReactive: typeof import('vue')['shallowReactive']
|
|
143
|
+
const shallowReadonly: typeof import('vue')['shallowReadonly']
|
|
144
|
+
const shallowRef: typeof import('vue')['shallowRef']
|
|
145
|
+
const shell: typeof import('../../src/components/vue-codemirror/lang-code/shell/index')['default']
|
|
146
|
+
const sql: typeof import('../../src/components/vue-codemirror/lang-code/sql/index')['default']
|
|
147
|
+
const storageConfig: typeof import('../../src/stores/storage-config')['default']
|
|
148
|
+
const storageCopy: typeof import('../../src/composables/admin/storage/storage-copy.js')['default']
|
|
149
|
+
const storageFilter: typeof import('../../src/composables/admin/storage/storage-filter.js')['default']
|
|
150
|
+
const storageList: typeof import('../../src/composables/admin/storage/storage-list.js')['default']
|
|
151
|
+
const storagePassword: typeof import('../../src/composables/admin/storage/storage-password.js')['default']
|
|
152
|
+
const storageReadme: typeof import('../../src/composables/admin/storage/storage-readme.js')['default']
|
|
153
|
+
const storeToRefs: typeof import('pinia')['storeToRefs']
|
|
154
|
+
const stylus: typeof import('../../src/components/vue-codemirror/lang-code/stylus/index')['default']
|
|
155
|
+
const swift: typeof import('../../src/components/vue-codemirror/lang-code/swift/index')['default']
|
|
156
|
+
const syncRef: typeof import('@vueuse/core')['syncRef']
|
|
157
|
+
const syncRefs: typeof import('@vueuse/core')['syncRefs']
|
|
158
|
+
const templateRef: typeof import('@vueuse/core')['templateRef']
|
|
159
|
+
const themes: typeof import('../../src/components/vue-codemirror/themes')['default']
|
|
160
|
+
const throttledRef: typeof import('@vueuse/core')['throttledRef']
|
|
161
|
+
const throttledWatch: typeof import('@vueuse/core')['throttledWatch']
|
|
162
|
+
const toRaw: typeof import('vue')['toRaw']
|
|
163
|
+
const toReactive: typeof import('@vueuse/core')['toReactive']
|
|
164
|
+
const toRef: typeof import('vue')['toRef']
|
|
165
|
+
const toRefs: typeof import('vue')['toRefs']
|
|
166
|
+
const toValue: typeof import('vue')['toValue']
|
|
167
|
+
const toml: typeof import('../../src/components/vue-codemirror/lang-code/toml/index')['default']
|
|
168
|
+
const triggerRef: typeof import('vue')['triggerRef']
|
|
169
|
+
const tryOnBeforeMount: typeof import('@vueuse/core')['tryOnBeforeMount']
|
|
170
|
+
const tryOnBeforeUnmount: typeof import('@vueuse/core')['tryOnBeforeUnmount']
|
|
171
|
+
const tryOnMounted: typeof import('@vueuse/core')['tryOnMounted']
|
|
172
|
+
const tryOnScopeDispose: typeof import('@vueuse/core')['tryOnScopeDispose']
|
|
173
|
+
const tryOnUnmounted: typeof import('@vueuse/core')['tryOnUnmounted']
|
|
174
|
+
const tsx: typeof import('../../src/components/vue-codemirror/lang-code/tsx/index')['default']
|
|
175
|
+
const typescript: typeof import('../../src/components/vue-codemirror/lang-code/typescript/index')['default']
|
|
176
|
+
const unref: typeof import('vue')['unref']
|
|
177
|
+
const unrefElement: typeof import('@vueuse/core')['unrefElement']
|
|
178
|
+
const until: typeof import('@vueuse/core')['until']
|
|
179
|
+
const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
|
|
180
|
+
const useAdminSetting: typeof import('../../src/composables/admin/useAdminSetting.js')['default']
|
|
181
|
+
const useAnimate: typeof import('@vueuse/core')['useAnimate']
|
|
182
|
+
const useArrayDifference: typeof import('@vueuse/core')['useArrayDifference']
|
|
183
|
+
const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery']
|
|
184
|
+
const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter']
|
|
185
|
+
const useArrayFind: typeof import('@vueuse/core')['useArrayFind']
|
|
186
|
+
const useArrayFindIndex: typeof import('@vueuse/core')['useArrayFindIndex']
|
|
187
|
+
const useArrayFindLast: typeof import('@vueuse/core')['useArrayFindLast']
|
|
188
|
+
const useArrayIncludes: typeof import('@vueuse/core')['useArrayIncludes']
|
|
189
|
+
const useArrayJoin: typeof import('@vueuse/core')['useArrayJoin']
|
|
190
|
+
const useArrayMap: typeof import('@vueuse/core')['useArrayMap']
|
|
191
|
+
const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
|
|
192
|
+
const useArraySome: typeof import('@vueuse/core')['useArraySome']
|
|
193
|
+
const useArrayUnique: typeof import('@vueuse/core')['useArrayUnique']
|
|
194
|
+
const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue']
|
|
195
|
+
const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
|
|
196
|
+
const useAttrs: typeof import('vue')['useAttrs']
|
|
197
|
+
const useBase64: typeof import('@vueuse/core')['useBase64']
|
|
198
|
+
const useBatchOperatorResult: typeof import('../../src/composables/file/useBatchOperatorResult.js')['default']
|
|
199
|
+
const useBattery: typeof import('@vueuse/core')['useBattery']
|
|
200
|
+
const useBluetooth: typeof import('@vueuse/core')['useBluetooth']
|
|
201
|
+
const useBreakpoints: typeof import('@vueuse/core')['useBreakpoints']
|
|
202
|
+
const useBroadcastChannel: typeof import('@vueuse/core')['useBroadcastChannel']
|
|
203
|
+
const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']
|
|
204
|
+
const useCached: typeof import('@vueuse/core')['useCached']
|
|
205
|
+
const useClientInfo: typeof import('../../src/composables/admin/useClientInfo.js')['default']
|
|
206
|
+
const useClipboard: typeof import('@vueuse/core')['useClipboard']
|
|
207
|
+
const useCloned: typeof import('@vueuse/core')['useCloned']
|
|
208
|
+
const useColorMode: typeof import('@vueuse/core')['useColorMode']
|
|
209
|
+
const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog']
|
|
210
|
+
const useCounter: typeof import('@vueuse/core')['useCounter']
|
|
211
|
+
const useCssModule: typeof import('vue')['useCssModule']
|
|
212
|
+
const useCssVar: typeof import('@vueuse/core')['useCssVar']
|
|
213
|
+
const useCssVars: typeof import('vue')['useCssVars']
|
|
214
|
+
const useCurrentElement: typeof import('@vueuse/core')['useCurrentElement']
|
|
215
|
+
const useCycleList: typeof import('@vueuse/core')['useCycleList']
|
|
216
|
+
const useDark: typeof import('@vueuse/core')['useDark']
|
|
217
|
+
const useDarks: typeof import('../../src/composables/useDarks')['default']
|
|
218
|
+
const useDateFormat: typeof import('@vueuse/core')['useDateFormat']
|
|
219
|
+
const useDebounce: typeof import('@vueuse/core')['useDebounce']
|
|
220
|
+
const useDebounceFn: typeof import('@vueuse/core')['useDebounceFn']
|
|
221
|
+
const useDebouncedRefHistory: typeof import('@vueuse/core')['useDebouncedRefHistory']
|
|
222
|
+
const useDeviceMotion: typeof import('@vueuse/core')['useDeviceMotion']
|
|
223
|
+
const useDeviceOrientation: typeof import('@vueuse/core')['useDeviceOrientation']
|
|
224
|
+
const useDevicePixelRatio: typeof import('@vueuse/core')['useDevicePixelRatio']
|
|
225
|
+
const useDevicesList: typeof import('@vueuse/core')['useDevicesList']
|
|
226
|
+
const useDialog: typeof import('../../src/components/common/dialog/useDialog')['default']
|
|
227
|
+
const useDialogWithForm: typeof import('../../src/components/common/dialog/useDialogWithForm')['default']
|
|
228
|
+
const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
|
|
229
|
+
const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
|
|
230
|
+
const useDraggable: typeof import('@vueuse/core')['useDraggable']
|
|
231
|
+
const useDropZone: typeof import('@vueuse/core')['useDropZone']
|
|
232
|
+
const useElementBounding: typeof import('@vueuse/core')['useElementBounding']
|
|
233
|
+
const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
|
|
234
|
+
const useElementHover: typeof import('@vueuse/core')['useElementHover']
|
|
235
|
+
const useElementSize: typeof import('@vueuse/core')['useElementSize']
|
|
236
|
+
const useElementVisibility: typeof import('@vueuse/core')['useElementVisibility']
|
|
237
|
+
const useEventBus: typeof import('@vueuse/core')['useEventBus']
|
|
238
|
+
const useEventListener: typeof import('@vueuse/core')['useEventListener']
|
|
239
|
+
const useEventSource: typeof import('@vueuse/core')['useEventSource']
|
|
240
|
+
const useEyeDropper: typeof import('@vueuse/core')['useEyeDropper']
|
|
241
|
+
const useFavicon: typeof import('@vueuse/core')['useFavicon']
|
|
242
|
+
const useFetch: typeof import('@vueuse/core')['useFetch']
|
|
243
|
+
const useFileContextMenu: typeof import('../../src/composables/file/useFileContextMenu.js')['default']
|
|
244
|
+
const useFileData: typeof import('../../src/composables/file/useFileData.js')['default']
|
|
245
|
+
const useFileDialog: typeof import('@vueuse/core')['useFileDialog']
|
|
246
|
+
const useFileLink: typeof import('../../src/composables/file/useFileLink.js')['default']
|
|
247
|
+
const useFileLoading: typeof import('../../src/composables/file/useFileLoading.js')['default']
|
|
248
|
+
const useFileLongPressEvent: typeof import('../../src/composables/file/useFileLongPressEvent.js')['default']
|
|
249
|
+
const useFileOperator: typeof import('../../src/composables/file/useFileOperator.js')['default']
|
|
250
|
+
const useFilePreview: typeof import('../../src/composables/file/useFilePreview.js')['default']
|
|
251
|
+
const useFilePwd: typeof import('../../src/composables/file/useFilePwd.js')['default']
|
|
252
|
+
const useFileSelect: typeof import('../../src/composables/file/useFileSelect.js')['default']
|
|
253
|
+
const useFileShare: typeof import('../../src/composables/file/useFileShare.js')['default']
|
|
254
|
+
const useFileSystemAccess: typeof import('@vueuse/core')['useFileSystemAccess']
|
|
255
|
+
const useFileUpload: typeof import('../../src/composables/file/useFileUpload.js')['default']
|
|
256
|
+
const useFocus: typeof import('@vueuse/core')['useFocus']
|
|
257
|
+
const useFocusWithin: typeof import('@vueuse/core')['useFocusWithin']
|
|
258
|
+
const useFps: typeof import('@vueuse/core')['useFps']
|
|
259
|
+
const useFullscreen: typeof import('@vueuse/core')['useFullscreen']
|
|
260
|
+
const useGamepad: typeof import('@vueuse/core')['useGamepad']
|
|
261
|
+
const useGeolocation: typeof import('@vueuse/core')['useGeolocation']
|
|
262
|
+
const useHeaderBreadcrumb: typeof import('../../src/composables/header/useHeaderBreadcrumb.js')['default']
|
|
263
|
+
const useHeaderStorageList: typeof import('../../src/composables/header/useHeaderStorageList.js')['default']
|
|
264
|
+
const useId: typeof import('vue')['useId']
|
|
265
|
+
const useIdle: typeof import('@vueuse/core')['useIdle']
|
|
266
|
+
const useImage: typeof import('@vueuse/core')['useImage']
|
|
267
|
+
const useInfiniteScroll: typeof import('@vueuse/core')['useInfiniteScroll']
|
|
268
|
+
const useIntersectionObserver: typeof import('@vueuse/core')['useIntersectionObserver']
|
|
269
|
+
const useInterval: typeof import('@vueuse/core')['useInterval']
|
|
270
|
+
const useIntervalFn: typeof import('@vueuse/core')['useIntervalFn']
|
|
271
|
+
const useKeyModifier: typeof import('@vueuse/core')['useKeyModifier']
|
|
272
|
+
const useKkFileViewDialog: typeof import('../../src/composables/file/useKkFileViewDialog.js')['default']
|
|
273
|
+
const useLastChanged: typeof import('@vueuse/core')['useLastChanged']
|
|
274
|
+
const useLink: typeof import('vue-router')['useLink']
|
|
275
|
+
const useLinkSetting: typeof import('../../src/composables/admin/link/useLinkSetting.js')['default']
|
|
276
|
+
const useLocalStorage: typeof import('@vueuse/core')['useLocalStorage']
|
|
277
|
+
const useMagicKeys: typeof import('@vueuse/core')['useMagicKeys']
|
|
278
|
+
const useManualRefHistory: typeof import('@vueuse/core')['useManualRefHistory']
|
|
279
|
+
const useMediaControls: typeof import('@vueuse/core')['useMediaControls']
|
|
280
|
+
const useMediaQuery: typeof import('@vueuse/core')['useMediaQuery']
|
|
281
|
+
const useMemoize: typeof import('@vueuse/core')['useMemoize']
|
|
282
|
+
const useMemory: typeof import('@vueuse/core')['useMemory']
|
|
283
|
+
const useModel: typeof import('vue')['useModel']
|
|
284
|
+
const useMounted: typeof import('@vueuse/core')['useMounted']
|
|
285
|
+
const useMouse: typeof import('@vueuse/core')['useMouse']
|
|
286
|
+
const useMouseInElement: typeof import('@vueuse/core')['useMouseInElement']
|
|
287
|
+
const useMousePressed: typeof import('@vueuse/core')['useMousePressed']
|
|
288
|
+
const useMutationObserver: typeof import('@vueuse/core')['useMutationObserver']
|
|
289
|
+
const useNavigatorLanguage: typeof import('@vueuse/core')['useNavigatorLanguage']
|
|
290
|
+
const useNetwork: typeof import('@vueuse/core')['useNetwork']
|
|
291
|
+
const useNow: typeof import('@vueuse/core')['useNow']
|
|
292
|
+
const useObjectUrl: typeof import('@vueuse/core')['useObjectUrl']
|
|
293
|
+
const useOfficeViewerDialog: typeof import('../../src/composables/file/useOfficeViewerDialog.js')['default']
|
|
294
|
+
const useOffsetPagination: typeof import('@vueuse/core')['useOffsetPagination']
|
|
295
|
+
const useOnline: typeof import('@vueuse/core')['useOnline']
|
|
296
|
+
const usePageLeave: typeof import('@vueuse/core')['usePageLeave']
|
|
297
|
+
const useParallax: typeof import('@vueuse/core')['useParallax']
|
|
298
|
+
const useParentElement: typeof import('@vueuse/core')['useParentElement']
|
|
299
|
+
const usePdfViewerDialog: typeof import('../../src/composables/file/usePdfViewerDialog.js')['default']
|
|
300
|
+
const usePerformanceObserver: typeof import('@vueuse/core')['usePerformanceObserver']
|
|
301
|
+
const usePermission: typeof import('@vueuse/core')['usePermission']
|
|
302
|
+
const usePointer: typeof import('@vueuse/core')['usePointer']
|
|
303
|
+
const usePointerLock: typeof import('@vueuse/core')['usePointerLock']
|
|
304
|
+
const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe']
|
|
305
|
+
const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme']
|
|
306
|
+
const usePreferredContrast: typeof import('@vueuse/core')['usePreferredContrast']
|
|
307
|
+
const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark']
|
|
308
|
+
const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages']
|
|
309
|
+
const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion']
|
|
310
|
+
const usePrevious: typeof import('@vueuse/core')['usePrevious']
|
|
311
|
+
const useRafFn: typeof import('@vueuse/core')['useRafFn']
|
|
312
|
+
const useRefHistory: typeof import('@vueuse/core')['useRefHistory']
|
|
313
|
+
const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver']
|
|
314
|
+
const useRoute: typeof import('vue-router')['useRoute']
|
|
315
|
+
const useRouter: typeof import('vue-router')['useRouter']
|
|
316
|
+
const useRouterData: typeof import('../../src/composables/useRouterData.js')['default']
|
|
317
|
+
const useScreenOrientation: typeof import('@vueuse/core')['useScreenOrientation']
|
|
318
|
+
const useScreenSafeArea: typeof import('@vueuse/core')['useScreenSafeArea']
|
|
319
|
+
const useScriptTag: typeof import('@vueuse/core')['useScriptTag']
|
|
320
|
+
const useScroll: typeof import('@vueuse/core')['useScroll']
|
|
321
|
+
const useScrollLock: typeof import('@vueuse/core')['useScrollLock']
|
|
322
|
+
const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage']
|
|
323
|
+
const useSetting: typeof import('../../src/composables/header/useSetting.js')['default']
|
|
324
|
+
const useShare: typeof import('@vueuse/core')['useShare']
|
|
325
|
+
const useShareActions: typeof import('../../src/composables/file/useShareActions.js')['default']
|
|
326
|
+
const useShareData: typeof import('../../src/composables/share/useShareData.js')['default']
|
|
327
|
+
const useShareTableOperator: typeof import('../../src/composables/file/useShareTableOperator.js')['default']
|
|
328
|
+
const useSlots: typeof import('vue')['useSlots']
|
|
329
|
+
const useSorted: typeof import('@vueuse/core')['useSorted']
|
|
330
|
+
const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition']
|
|
331
|
+
const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis']
|
|
332
|
+
const useSsoConfig: typeof import('../../src/composables/admin/sso/useSsoConfig.js')['default']
|
|
333
|
+
const useStepper: typeof import('@vueuse/core')['useStepper']
|
|
334
|
+
const useStorage: typeof import('@vueuse/core')['useStorage']
|
|
335
|
+
const useStorageAsync: typeof import('@vueuse/core')['useStorageAsync']
|
|
336
|
+
const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
|
|
337
|
+
const useSupported: typeof import('@vueuse/core')['useSupported']
|
|
338
|
+
const useSwipe: typeof import('@vueuse/core')['useSwipe']
|
|
339
|
+
const useTableOperator: typeof import('../../src/composables/file/useTableOperator.js')['default']
|
|
340
|
+
const useTemplateRef: typeof import('vue')['useTemplateRef']
|
|
341
|
+
const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
|
|
342
|
+
const useTextDirection: typeof import('@vueuse/core')['useTextDirection']
|
|
343
|
+
const useTextSelection: typeof import('@vueuse/core')['useTextSelection']
|
|
344
|
+
const useTextViewerDialog: typeof import('../../src/composables/file/useTextViewerDialog.js')['default']
|
|
345
|
+
const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize']
|
|
346
|
+
const useThree3dPreviewDialog: typeof import('../../src/composables/file/useThree3dPreviewDialog.js')['default']
|
|
347
|
+
const useThrottle: typeof import('@vueuse/core')['useThrottle']
|
|
348
|
+
const useThrottleFn: typeof import('@vueuse/core')['useThrottleFn']
|
|
349
|
+
const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory']
|
|
350
|
+
const useTimeAgo: typeof import('@vueuse/core')['useTimeAgo']
|
|
351
|
+
const useTimeout: typeof import('@vueuse/core')['useTimeout']
|
|
352
|
+
const useTimeoutFn: typeof import('@vueuse/core')['useTimeoutFn']
|
|
353
|
+
const useTimeoutPoll: typeof import('@vueuse/core')['useTimeoutPoll']
|
|
354
|
+
const useTimestamp: typeof import('@vueuse/core')['useTimestamp']
|
|
355
|
+
const useTitle: typeof import('@vueuse/core')['useTitle']
|
|
356
|
+
const useToNumber: typeof import('@vueuse/core')['useToNumber']
|
|
357
|
+
const useToString: typeof import('@vueuse/core')['useToString']
|
|
358
|
+
const useToggle: typeof import('@vueuse/core')['useToggle']
|
|
359
|
+
const useTransition: typeof import('@vueuse/core')['useTransition']
|
|
360
|
+
const useUrlSearchParams: typeof import('@vueuse/core')['useUrlSearchParams']
|
|
361
|
+
const useUserMedia: typeof import('@vueuse/core')['useUserMedia']
|
|
362
|
+
const useVModel: typeof import('@vueuse/core')['useVModel']
|
|
363
|
+
const useVModels: typeof import('@vueuse/core')['useVModels']
|
|
364
|
+
const useVibrate: typeof import('@vueuse/core')['useVibrate']
|
|
365
|
+
const useVideoPlayerDialog: typeof import('../../src/composables/file/useVideoPlayerDialog.js')['default']
|
|
366
|
+
const useVirtualList: typeof import('@vueuse/core')['useVirtualList']
|
|
367
|
+
const useWakeLock: typeof import('@vueuse/core')['useWakeLock']
|
|
368
|
+
const useWebNotification: typeof import('@vueuse/core')['useWebNotification']
|
|
369
|
+
const useWebSocket: typeof import('@vueuse/core')['useWebSocket']
|
|
370
|
+
const useWebWorker: typeof import('@vueuse/core')['useWebWorker']
|
|
371
|
+
const useWebWorkerFn: typeof import('@vueuse/core')['useWebWorkerFn']
|
|
372
|
+
const useWindowFocus: typeof import('@vueuse/core')['useWindowFocus']
|
|
373
|
+
const useWindowScroll: typeof import('@vueuse/core')['useWindowScroll']
|
|
374
|
+
const useWindowSize: typeof import('@vueuse/core')['useWindowSize']
|
|
375
|
+
const userCopy: typeof import('../../src/composables/admin/user/user-copy.js')['default']
|
|
376
|
+
const vb: typeof import('../../src/components/vue-codemirror/lang-code/vb/index')['default']
|
|
377
|
+
const vbscript: typeof import('../../src/components/vue-codemirror/lang-code/vbscript/index')['default']
|
|
378
|
+
const watch: typeof import('vue')['watch']
|
|
379
|
+
const watchArray: typeof import('@vueuse/core')['watchArray']
|
|
380
|
+
const watchAtMost: typeof import('@vueuse/core')['watchAtMost']
|
|
381
|
+
const watchDebounced: typeof import('@vueuse/core')['watchDebounced']
|
|
382
|
+
const watchDeep: typeof import('@vueuse/core')['watchDeep']
|
|
383
|
+
const watchEffect: typeof import('vue')['watchEffect']
|
|
384
|
+
const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
|
|
385
|
+
const watchImmediate: typeof import('@vueuse/core')['watchImmediate']
|
|
386
|
+
const watchOnce: typeof import('@vueuse/core')['watchOnce']
|
|
387
|
+
const watchPausable: typeof import('@vueuse/core')['watchPausable']
|
|
388
|
+
const watchPostEffect: typeof import('vue')['watchPostEffect']
|
|
389
|
+
const watchSyncEffect: typeof import('vue')['watchSyncEffect']
|
|
390
|
+
const watchThrottled: typeof import('@vueuse/core')['watchThrottled']
|
|
391
|
+
const watchTriggerable: typeof import('@vueuse/core')['watchTriggerable']
|
|
392
|
+
const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
|
|
393
|
+
const whenever: typeof import('@vueuse/core')['whenever']
|
|
394
|
+
const xml: typeof import('../../src/components/vue-codemirror/lang-code/xml/index')['default']
|
|
395
|
+
const yaml: typeof import('../../src/components/vue-codemirror/lang-code/yaml/index')['default']
|
|
396
|
+
}
|
|
397
|
+
// for type re-export
|
|
398
|
+
declare global {
|
|
399
|
+
// @ts-ignore
|
|
400
|
+
export type { Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
|
|
401
|
+
import('vue')
|
|
402
|
+
// @ts-ignore
|
|
403
|
+
export type { PropsType } from '../../src/components/common/dialog/types'
|
|
404
|
+
import('../../src/components/common/dialog/types')
|
|
405
|
+
// @ts-ignore
|
|
406
|
+
export type { ConfirmResult, Props } from '../../src/components/messageBox/prompt/types'
|
|
407
|
+
import('../../src/components/messageBox/prompt/types')
|
|
408
|
+
// @ts-ignore
|
|
409
|
+
export type { ToolBarConfig } from '../../src/components/vue-codemirror/types'
|
|
410
|
+
import('../../src/components/vue-codemirror/types')
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
// for vue template auto import
|
|
414
|
+
import { UnwrapRef } from 'vue'
|
|
415
|
+
declare module 'vue' {
|
|
416
|
+
interface GlobalComponents {}
|
|
417
|
+
interface ComponentCustomProperties {
|
|
418
|
+
readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
|
|
419
|
+
readonly ElLoading: UnwrapRef<typeof import('element-plus/es')['ElLoading']>
|
|
420
|
+
readonly ElMessage: UnwrapRef<typeof import('element-plus/es')['ElMessage']>
|
|
421
|
+
readonly ElMessageBox: UnwrapRef<typeof import('element-plus/es')['ElMessageBox']>
|
|
422
|
+
readonly SvgIcon: UnwrapRef<typeof import('../../src/components/SvgIcon.vue')['default']>
|
|
423
|
+
readonly acceptHMRUpdate: UnwrapRef<typeof import('pinia')['acceptHMRUpdate']>
|
|
424
|
+
readonly adminLayout: UnwrapRef<typeof import('../../src/composables/admin/layout/admin-layout.js')['default']>
|
|
425
|
+
readonly allowShortcuts: UnwrapRef<typeof import('../../src/composables/file/useTableOperator.js')['allowShortcuts']>
|
|
426
|
+
readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
|
|
427
|
+
readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
|
|
428
|
+
readonly baseSsoConfig: UnwrapRef<typeof import('../../src/composables/admin/sso/baseSsoConfig.js')['baseSsoConfig']>
|
|
429
|
+
readonly buildTableOperator: UnwrapRef<typeof import('../../src/composables/file/useTableOperator.js')['buildTableOperator']>
|
|
430
|
+
readonly computed: UnwrapRef<typeof import('vue')['computed']>
|
|
431
|
+
readonly computedAsync: UnwrapRef<typeof import('@vueuse/core')['computedAsync']>
|
|
432
|
+
readonly computedEager: UnwrapRef<typeof import('@vueuse/core')['computedEager']>
|
|
433
|
+
readonly computedInject: UnwrapRef<typeof import('@vueuse/core')['computedInject']>
|
|
434
|
+
readonly computedWithControl: UnwrapRef<typeof import('@vueuse/core')['computedWithControl']>
|
|
435
|
+
readonly confirm: UnwrapRef<typeof import('../../src/components/messageBox/confirm/index')['default']>
|
|
436
|
+
readonly constant: UnwrapRef<typeof import('../../src/constant/index.js')['constant']>
|
|
437
|
+
readonly controlledComputed: UnwrapRef<typeof import('@vueuse/core')['controlledComputed']>
|
|
438
|
+
readonly controlledRef: UnwrapRef<typeof import('@vueuse/core')['controlledRef']>
|
|
439
|
+
readonly cpp: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/cpp/index')['default']>
|
|
440
|
+
readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
|
|
441
|
+
readonly createEventHook: UnwrapRef<typeof import('@vueuse/core')['createEventHook']>
|
|
442
|
+
readonly createGlobalState: UnwrapRef<typeof import('@vueuse/core')['createGlobalState']>
|
|
443
|
+
readonly createInjectionState: UnwrapRef<typeof import('@vueuse/core')['createInjectionState']>
|
|
444
|
+
readonly createPinia: UnwrapRef<typeof import('pinia')['createPinia']>
|
|
445
|
+
readonly createReactiveFn: UnwrapRef<typeof import('@vueuse/core')['createReactiveFn']>
|
|
446
|
+
readonly createReusableTemplate: UnwrapRef<typeof import('@vueuse/core')['createReusableTemplate']>
|
|
447
|
+
readonly createSharedComposable: UnwrapRef<typeof import('@vueuse/core')['createSharedComposable']>
|
|
448
|
+
readonly createTemplatePromise: UnwrapRef<typeof import('@vueuse/core')['createTemplatePromise']>
|
|
449
|
+
readonly createUnrefFn: UnwrapRef<typeof import('@vueuse/core')['createUnrefFn']>
|
|
450
|
+
readonly css: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/css/index')['default']>
|
|
451
|
+
readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
|
|
452
|
+
readonly debouncedRef: UnwrapRef<typeof import('@vueuse/core')['debouncedRef']>
|
|
453
|
+
readonly debouncedWatch: UnwrapRef<typeof import('@vueuse/core')['debouncedWatch']>
|
|
454
|
+
readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
|
|
455
|
+
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
|
|
456
|
+
readonly defineStore: UnwrapRef<typeof import('pinia')['defineStore']>
|
|
457
|
+
readonly dockerfile: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/dockerfile/index')['default']>
|
|
458
|
+
readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
|
|
459
|
+
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
|
|
460
|
+
readonly encodings: UnwrapRef<typeof import('../../src/components/vue-codemirror/encodings')['default']>
|
|
461
|
+
readonly erlang: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/erlang/index')['default']>
|
|
462
|
+
readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
|
|
463
|
+
readonly fileData: UnwrapRef<typeof import('../../src/stores/file-data')['default']>
|
|
464
|
+
readonly getActivePinia: UnwrapRef<typeof import('pinia')['getActivePinia']>
|
|
465
|
+
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
|
|
466
|
+
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
|
|
467
|
+
readonly globalConfig: UnwrapRef<typeof import('../../src/stores/global-config')['default']>
|
|
468
|
+
readonly go: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/go/index')['default']>
|
|
469
|
+
readonly h: UnwrapRef<typeof import('vue')['h']>
|
|
470
|
+
readonly hasDialog: UnwrapRef<typeof import('../../src/composables/file/useTableOperator.js')['hasDialog']>
|
|
471
|
+
readonly hasPasswordInputFocus: UnwrapRef<typeof import('../../src/composables/file/useTableOperator.js')['hasPasswordInputFocus']>
|
|
472
|
+
readonly hasSearchInputFocus: UnwrapRef<typeof import('../../src/composables/file/useTableOperator.js')['hasSearchInputFocus']>
|
|
473
|
+
readonly hoverBody: UnwrapRef<typeof import('../../src/composables/file/useTableOperator.js')['hoverBody']>
|
|
474
|
+
readonly html: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/html/index')['default']>
|
|
475
|
+
readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
|
|
476
|
+
readonly inject: UnwrapRef<typeof import('vue')['inject']>
|
|
477
|
+
readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
|
|
478
|
+
readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
|
|
479
|
+
readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
|
|
480
|
+
readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
|
|
481
|
+
readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
|
|
482
|
+
readonly java: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/java/index')['default']>
|
|
483
|
+
readonly javascript: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/javascript/index')['default']>
|
|
484
|
+
readonly json: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/json/index')['default']>
|
|
485
|
+
readonly jsx: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/jsx/index')['default']>
|
|
486
|
+
readonly languages: UnwrapRef<typeof import('../../src/components/vue-codemirror/languages')['default']>
|
|
487
|
+
readonly lua: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/lua/index')['default']>
|
|
488
|
+
readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
|
|
489
|
+
readonly mapActions: UnwrapRef<typeof import('pinia')['mapActions']>
|
|
490
|
+
readonly mapGetters: UnwrapRef<typeof import('pinia')['mapGetters']>
|
|
491
|
+
readonly mapState: UnwrapRef<typeof import('pinia')['mapState']>
|
|
492
|
+
readonly mapStores: UnwrapRef<typeof import('pinia')['mapStores']>
|
|
493
|
+
readonly mapWritableState: UnwrapRef<typeof import('pinia')['mapWritableState']>
|
|
494
|
+
readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
|
|
495
|
+
readonly markdown: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/markdown/index')['default']>
|
|
496
|
+
readonly messageBox: UnwrapRef<typeof import('../../src/components/messageBox/messageBox')['default']>
|
|
497
|
+
readonly mysql: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/mysql/index')['default']>
|
|
498
|
+
readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
|
|
499
|
+
readonly nginx: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/nginx/index')['default']>
|
|
500
|
+
readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
|
|
501
|
+
readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
|
|
502
|
+
readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
|
|
503
|
+
readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
|
|
504
|
+
readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
|
|
505
|
+
readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
|
|
506
|
+
readonly onClickOutside: UnwrapRef<typeof import('@vueuse/core')['onClickOutside']>
|
|
507
|
+
readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
|
|
508
|
+
readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
|
|
509
|
+
readonly onKeyStroke: UnwrapRef<typeof import('@vueuse/core')['onKeyStroke']>
|
|
510
|
+
readonly onLongPress: UnwrapRef<typeof import('@vueuse/core')['onLongPress']>
|
|
511
|
+
readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
|
|
512
|
+
readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
|
|
513
|
+
readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
|
|
514
|
+
readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
|
|
515
|
+
readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
|
|
516
|
+
readonly onStartTyping: UnwrapRef<typeof import('@vueuse/core')['onStartTyping']>
|
|
517
|
+
readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
|
|
518
|
+
readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
|
|
519
|
+
readonly onWatcherCleanup: UnwrapRef<typeof import('vue')['onWatcherCleanup']>
|
|
520
|
+
readonly open115Util: UnwrapRef<typeof import('../../src/composables/admin/storage/utils/open115-util.js')['default']>
|
|
521
|
+
readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
|
|
522
|
+
readonly perl: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/perl/index')['default']>
|
|
523
|
+
readonly pgsql: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/pgsql/index')['default']>
|
|
524
|
+
readonly php: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/php/index')['default']>
|
|
525
|
+
readonly powershell: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/powershell/index')['default']>
|
|
526
|
+
readonly prompt: UnwrapRef<typeof import('../../src/components/messageBox/prompt/index')['default']>
|
|
527
|
+
readonly provide: UnwrapRef<typeof import('vue')['provide']>
|
|
528
|
+
readonly python: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/python/index')['default']>
|
|
529
|
+
readonly r: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/r/index')['default']>
|
|
530
|
+
readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
|
|
531
|
+
readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
|
|
532
|
+
readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
|
|
533
|
+
readonly reactiveComputed: UnwrapRef<typeof import('@vueuse/core')['reactiveComputed']>
|
|
534
|
+
readonly reactiveOmit: UnwrapRef<typeof import('@vueuse/core')['reactiveOmit']>
|
|
535
|
+
readonly reactivePick: UnwrapRef<typeof import('@vueuse/core')['reactivePick']>
|
|
536
|
+
readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
|
|
537
|
+
readonly ref: UnwrapRef<typeof import('vue')['ref']>
|
|
538
|
+
readonly refAutoReset: UnwrapRef<typeof import('@vueuse/core')['refAutoReset']>
|
|
539
|
+
readonly refDebounced: UnwrapRef<typeof import('@vueuse/core')['refDebounced']>
|
|
540
|
+
readonly refDefault: UnwrapRef<typeof import('@vueuse/core')['refDefault']>
|
|
541
|
+
readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
|
|
542
|
+
readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
|
|
543
|
+
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
|
544
|
+
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
|
|
545
|
+
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
|
|
546
|
+
readonly ruby: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/ruby/index')['default']>
|
|
547
|
+
readonly rust: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/rust/index')['default']>
|
|
548
|
+
readonly selectFolder: UnwrapRef<typeof import('../../src/components/file/selectFolder/index')['default']>
|
|
549
|
+
readonly setActivePinia: UnwrapRef<typeof import('pinia')['setActivePinia']>
|
|
550
|
+
readonly setMapStoreSuffix: UnwrapRef<typeof import('pinia')['setMapStoreSuffix']>
|
|
551
|
+
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
|
|
552
|
+
readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
|
|
553
|
+
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
|
|
554
|
+
readonly shell: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/shell/index')['default']>
|
|
555
|
+
readonly sql: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/sql/index')['default']>
|
|
556
|
+
readonly storageConfig: UnwrapRef<typeof import('../../src/stores/storage-config')['default']>
|
|
557
|
+
readonly storageCopy: UnwrapRef<typeof import('../../src/composables/admin/storage/storage-copy.js')['default']>
|
|
558
|
+
readonly storageFilter: UnwrapRef<typeof import('../../src/composables/admin/storage/storage-filter.js')['default']>
|
|
559
|
+
readonly storageList: UnwrapRef<typeof import('../../src/composables/admin/storage/storage-list.js')['default']>
|
|
560
|
+
readonly storagePassword: UnwrapRef<typeof import('../../src/composables/admin/storage/storage-password.js')['default']>
|
|
561
|
+
readonly storageReadme: UnwrapRef<typeof import('../../src/composables/admin/storage/storage-readme.js')['default']>
|
|
562
|
+
readonly storeToRefs: UnwrapRef<typeof import('pinia')['storeToRefs']>
|
|
563
|
+
readonly stylus: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/stylus/index')['default']>
|
|
564
|
+
readonly swift: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/swift/index')['default']>
|
|
565
|
+
readonly syncRef: UnwrapRef<typeof import('@vueuse/core')['syncRef']>
|
|
566
|
+
readonly syncRefs: UnwrapRef<typeof import('@vueuse/core')['syncRefs']>
|
|
567
|
+
readonly templateRef: UnwrapRef<typeof import('@vueuse/core')['templateRef']>
|
|
568
|
+
readonly themes: UnwrapRef<typeof import('../../src/components/vue-codemirror/themes')['default']>
|
|
569
|
+
readonly throttledRef: UnwrapRef<typeof import('@vueuse/core')['throttledRef']>
|
|
570
|
+
readonly throttledWatch: UnwrapRef<typeof import('@vueuse/core')['throttledWatch']>
|
|
571
|
+
readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
|
|
572
|
+
readonly toReactive: UnwrapRef<typeof import('@vueuse/core')['toReactive']>
|
|
573
|
+
readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
|
|
574
|
+
readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
|
|
575
|
+
readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
|
|
576
|
+
readonly toml: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/toml/index')['default']>
|
|
577
|
+
readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
|
|
578
|
+
readonly tryOnBeforeMount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeMount']>
|
|
579
|
+
readonly tryOnBeforeUnmount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeUnmount']>
|
|
580
|
+
readonly tryOnMounted: UnwrapRef<typeof import('@vueuse/core')['tryOnMounted']>
|
|
581
|
+
readonly tryOnScopeDispose: UnwrapRef<typeof import('@vueuse/core')['tryOnScopeDispose']>
|
|
582
|
+
readonly tryOnUnmounted: UnwrapRef<typeof import('@vueuse/core')['tryOnUnmounted']>
|
|
583
|
+
readonly tsx: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/tsx/index')['default']>
|
|
584
|
+
readonly typescript: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/typescript/index')['default']>
|
|
585
|
+
readonly unref: UnwrapRef<typeof import('vue')['unref']>
|
|
586
|
+
readonly unrefElement: UnwrapRef<typeof import('@vueuse/core')['unrefElement']>
|
|
587
|
+
readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
|
|
588
|
+
readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
|
|
589
|
+
readonly useAdminSetting: UnwrapRef<typeof import('../../src/composables/admin/useAdminSetting.js')['default']>
|
|
590
|
+
readonly useAnimate: UnwrapRef<typeof import('@vueuse/core')['useAnimate']>
|
|
591
|
+
readonly useArrayDifference: UnwrapRef<typeof import('@vueuse/core')['useArrayDifference']>
|
|
592
|
+
readonly useArrayEvery: UnwrapRef<typeof import('@vueuse/core')['useArrayEvery']>
|
|
593
|
+
readonly useArrayFilter: UnwrapRef<typeof import('@vueuse/core')['useArrayFilter']>
|
|
594
|
+
readonly useArrayFind: UnwrapRef<typeof import('@vueuse/core')['useArrayFind']>
|
|
595
|
+
readonly useArrayFindIndex: UnwrapRef<typeof import('@vueuse/core')['useArrayFindIndex']>
|
|
596
|
+
readonly useArrayFindLast: UnwrapRef<typeof import('@vueuse/core')['useArrayFindLast']>
|
|
597
|
+
readonly useArrayIncludes: UnwrapRef<typeof import('@vueuse/core')['useArrayIncludes']>
|
|
598
|
+
readonly useArrayJoin: UnwrapRef<typeof import('@vueuse/core')['useArrayJoin']>
|
|
599
|
+
readonly useArrayMap: UnwrapRef<typeof import('@vueuse/core')['useArrayMap']>
|
|
600
|
+
readonly useArrayReduce: UnwrapRef<typeof import('@vueuse/core')['useArrayReduce']>
|
|
601
|
+
readonly useArraySome: UnwrapRef<typeof import('@vueuse/core')['useArraySome']>
|
|
602
|
+
readonly useArrayUnique: UnwrapRef<typeof import('@vueuse/core')['useArrayUnique']>
|
|
603
|
+
readonly useAsyncQueue: UnwrapRef<typeof import('@vueuse/core')['useAsyncQueue']>
|
|
604
|
+
readonly useAsyncState: UnwrapRef<typeof import('@vueuse/core')['useAsyncState']>
|
|
605
|
+
readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
|
|
606
|
+
readonly useBase64: UnwrapRef<typeof import('@vueuse/core')['useBase64']>
|
|
607
|
+
readonly useBatchOperatorResult: UnwrapRef<typeof import('../../src/composables/file/useBatchOperatorResult.js')['default']>
|
|
608
|
+
readonly useBattery: UnwrapRef<typeof import('@vueuse/core')['useBattery']>
|
|
609
|
+
readonly useBluetooth: UnwrapRef<typeof import('@vueuse/core')['useBluetooth']>
|
|
610
|
+
readonly useBreakpoints: UnwrapRef<typeof import('@vueuse/core')['useBreakpoints']>
|
|
611
|
+
readonly useBroadcastChannel: UnwrapRef<typeof import('@vueuse/core')['useBroadcastChannel']>
|
|
612
|
+
readonly useBrowserLocation: UnwrapRef<typeof import('@vueuse/core')['useBrowserLocation']>
|
|
613
|
+
readonly useCached: UnwrapRef<typeof import('@vueuse/core')['useCached']>
|
|
614
|
+
readonly useClientInfo: UnwrapRef<typeof import('../../src/composables/admin/useClientInfo.js')['default']>
|
|
615
|
+
readonly useClipboard: UnwrapRef<typeof import('@vueuse/core')['useClipboard']>
|
|
616
|
+
readonly useCloned: UnwrapRef<typeof import('@vueuse/core')['useCloned']>
|
|
617
|
+
readonly useColorMode: UnwrapRef<typeof import('@vueuse/core')['useColorMode']>
|
|
618
|
+
readonly useConfirmDialog: UnwrapRef<typeof import('@vueuse/core')['useConfirmDialog']>
|
|
619
|
+
readonly useCounter: UnwrapRef<typeof import('@vueuse/core')['useCounter']>
|
|
620
|
+
readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
|
|
621
|
+
readonly useCssVar: UnwrapRef<typeof import('@vueuse/core')['useCssVar']>
|
|
622
|
+
readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
|
|
623
|
+
readonly useCurrentElement: UnwrapRef<typeof import('@vueuse/core')['useCurrentElement']>
|
|
624
|
+
readonly useCycleList: UnwrapRef<typeof import('@vueuse/core')['useCycleList']>
|
|
625
|
+
readonly useDark: UnwrapRef<typeof import('@vueuse/core')['useDark']>
|
|
626
|
+
readonly useDarks: UnwrapRef<typeof import('../../src/composables/useDarks')['default']>
|
|
627
|
+
readonly useDateFormat: UnwrapRef<typeof import('@vueuse/core')['useDateFormat']>
|
|
628
|
+
readonly useDebounce: UnwrapRef<typeof import('@vueuse/core')['useDebounce']>
|
|
629
|
+
readonly useDebounceFn: UnwrapRef<typeof import('@vueuse/core')['useDebounceFn']>
|
|
630
|
+
readonly useDebouncedRefHistory: UnwrapRef<typeof import('@vueuse/core')['useDebouncedRefHistory']>
|
|
631
|
+
readonly useDeviceMotion: UnwrapRef<typeof import('@vueuse/core')['useDeviceMotion']>
|
|
632
|
+
readonly useDeviceOrientation: UnwrapRef<typeof import('@vueuse/core')['useDeviceOrientation']>
|
|
633
|
+
readonly useDevicePixelRatio: UnwrapRef<typeof import('@vueuse/core')['useDevicePixelRatio']>
|
|
634
|
+
readonly useDevicesList: UnwrapRef<typeof import('@vueuse/core')['useDevicesList']>
|
|
635
|
+
readonly useDialog: UnwrapRef<typeof import('../../src/components/common/dialog/useDialog')['default']>
|
|
636
|
+
readonly useDialogWithForm: UnwrapRef<typeof import('../../src/components/common/dialog/useDialogWithForm')['default']>
|
|
637
|
+
readonly useDisplayMedia: UnwrapRef<typeof import('@vueuse/core')['useDisplayMedia']>
|
|
638
|
+
readonly useDocumentVisibility: UnwrapRef<typeof import('@vueuse/core')['useDocumentVisibility']>
|
|
639
|
+
readonly useDraggable: UnwrapRef<typeof import('@vueuse/core')['useDraggable']>
|
|
640
|
+
readonly useDropZone: UnwrapRef<typeof import('@vueuse/core')['useDropZone']>
|
|
641
|
+
readonly useElementBounding: UnwrapRef<typeof import('@vueuse/core')['useElementBounding']>
|
|
642
|
+
readonly useElementByPoint: UnwrapRef<typeof import('@vueuse/core')['useElementByPoint']>
|
|
643
|
+
readonly useElementHover: UnwrapRef<typeof import('@vueuse/core')['useElementHover']>
|
|
644
|
+
readonly useElementSize: UnwrapRef<typeof import('@vueuse/core')['useElementSize']>
|
|
645
|
+
readonly useElementVisibility: UnwrapRef<typeof import('@vueuse/core')['useElementVisibility']>
|
|
646
|
+
readonly useEventBus: UnwrapRef<typeof import('@vueuse/core')['useEventBus']>
|
|
647
|
+
readonly useEventListener: UnwrapRef<typeof import('@vueuse/core')['useEventListener']>
|
|
648
|
+
readonly useEventSource: UnwrapRef<typeof import('@vueuse/core')['useEventSource']>
|
|
649
|
+
readonly useEyeDropper: UnwrapRef<typeof import('@vueuse/core')['useEyeDropper']>
|
|
650
|
+
readonly useFavicon: UnwrapRef<typeof import('@vueuse/core')['useFavicon']>
|
|
651
|
+
readonly useFetch: UnwrapRef<typeof import('@vueuse/core')['useFetch']>
|
|
652
|
+
readonly useFileContextMenu: UnwrapRef<typeof import('../../src/composables/file/useFileContextMenu.js')['default']>
|
|
653
|
+
readonly useFileData: UnwrapRef<typeof import('../../src/composables/file/useFileData.js')['default']>
|
|
654
|
+
readonly useFileDialog: UnwrapRef<typeof import('@vueuse/core')['useFileDialog']>
|
|
655
|
+
readonly useFileLink: UnwrapRef<typeof import('../../src/composables/file/useFileLink.js')['default']>
|
|
656
|
+
readonly useFileLoading: UnwrapRef<typeof import('../../src/composables/file/useFileLoading.js')['default']>
|
|
657
|
+
readonly useFileLongPressEvent: UnwrapRef<typeof import('../../src/composables/file/useFileLongPressEvent.js')['default']>
|
|
658
|
+
readonly useFileOperator: UnwrapRef<typeof import('../../src/composables/file/useFileOperator.js')['default']>
|
|
659
|
+
readonly useFilePreview: UnwrapRef<typeof import('../../src/composables/file/useFilePreview.js')['default']>
|
|
660
|
+
readonly useFilePwd: UnwrapRef<typeof import('../../src/composables/file/useFilePwd.js')['default']>
|
|
661
|
+
readonly useFileSelect: UnwrapRef<typeof import('../../src/composables/file/useFileSelect.js')['default']>
|
|
662
|
+
readonly useFileShare: UnwrapRef<typeof import('../../src/composables/file/useFileShare.js')['default']>
|
|
663
|
+
readonly useFileSystemAccess: UnwrapRef<typeof import('@vueuse/core')['useFileSystemAccess']>
|
|
664
|
+
readonly useFileUpload: UnwrapRef<typeof import('../../src/composables/file/useFileUpload.js')['default']>
|
|
665
|
+
readonly useFocus: UnwrapRef<typeof import('@vueuse/core')['useFocus']>
|
|
666
|
+
readonly useFocusWithin: UnwrapRef<typeof import('@vueuse/core')['useFocusWithin']>
|
|
667
|
+
readonly useFps: UnwrapRef<typeof import('@vueuse/core')['useFps']>
|
|
668
|
+
readonly useFullscreen: UnwrapRef<typeof import('@vueuse/core')['useFullscreen']>
|
|
669
|
+
readonly useGamepad: UnwrapRef<typeof import('@vueuse/core')['useGamepad']>
|
|
670
|
+
readonly useGeolocation: UnwrapRef<typeof import('@vueuse/core')['useGeolocation']>
|
|
671
|
+
readonly useHeaderBreadcrumb: UnwrapRef<typeof import('../../src/composables/header/useHeaderBreadcrumb.js')['default']>
|
|
672
|
+
readonly useHeaderStorageList: UnwrapRef<typeof import('../../src/composables/header/useHeaderStorageList.js')['default']>
|
|
673
|
+
readonly useId: UnwrapRef<typeof import('vue')['useId']>
|
|
674
|
+
readonly useIdle: UnwrapRef<typeof import('@vueuse/core')['useIdle']>
|
|
675
|
+
readonly useImage: UnwrapRef<typeof import('@vueuse/core')['useImage']>
|
|
676
|
+
readonly useInfiniteScroll: UnwrapRef<typeof import('@vueuse/core')['useInfiniteScroll']>
|
|
677
|
+
readonly useIntersectionObserver: UnwrapRef<typeof import('@vueuse/core')['useIntersectionObserver']>
|
|
678
|
+
readonly useInterval: UnwrapRef<typeof import('@vueuse/core')['useInterval']>
|
|
679
|
+
readonly useIntervalFn: UnwrapRef<typeof import('@vueuse/core')['useIntervalFn']>
|
|
680
|
+
readonly useKeyModifier: UnwrapRef<typeof import('@vueuse/core')['useKeyModifier']>
|
|
681
|
+
readonly useKkFileViewDialog: UnwrapRef<typeof import('../../src/composables/file/useKkFileViewDialog.js')['default']>
|
|
682
|
+
readonly useLastChanged: UnwrapRef<typeof import('@vueuse/core')['useLastChanged']>
|
|
683
|
+
readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
|
|
684
|
+
readonly useLinkSetting: UnwrapRef<typeof import('../../src/composables/admin/link/useLinkSetting.js')['default']>
|
|
685
|
+
readonly useLocalStorage: UnwrapRef<typeof import('@vueuse/core')['useLocalStorage']>
|
|
686
|
+
readonly useMagicKeys: UnwrapRef<typeof import('@vueuse/core')['useMagicKeys']>
|
|
687
|
+
readonly useManualRefHistory: UnwrapRef<typeof import('@vueuse/core')['useManualRefHistory']>
|
|
688
|
+
readonly useMediaControls: UnwrapRef<typeof import('@vueuse/core')['useMediaControls']>
|
|
689
|
+
readonly useMediaQuery: UnwrapRef<typeof import('@vueuse/core')['useMediaQuery']>
|
|
690
|
+
readonly useMemoize: UnwrapRef<typeof import('@vueuse/core')['useMemoize']>
|
|
691
|
+
readonly useMemory: UnwrapRef<typeof import('@vueuse/core')['useMemory']>
|
|
692
|
+
readonly useModel: UnwrapRef<typeof import('vue')['useModel']>
|
|
693
|
+
readonly useMounted: UnwrapRef<typeof import('@vueuse/core')['useMounted']>
|
|
694
|
+
readonly useMouse: UnwrapRef<typeof import('@vueuse/core')['useMouse']>
|
|
695
|
+
readonly useMouseInElement: UnwrapRef<typeof import('@vueuse/core')['useMouseInElement']>
|
|
696
|
+
readonly useMousePressed: UnwrapRef<typeof import('@vueuse/core')['useMousePressed']>
|
|
697
|
+
readonly useMutationObserver: UnwrapRef<typeof import('@vueuse/core')['useMutationObserver']>
|
|
698
|
+
readonly useNavigatorLanguage: UnwrapRef<typeof import('@vueuse/core')['useNavigatorLanguage']>
|
|
699
|
+
readonly useNetwork: UnwrapRef<typeof import('@vueuse/core')['useNetwork']>
|
|
700
|
+
readonly useNow: UnwrapRef<typeof import('@vueuse/core')['useNow']>
|
|
701
|
+
readonly useObjectUrl: UnwrapRef<typeof import('@vueuse/core')['useObjectUrl']>
|
|
702
|
+
readonly useOfficeViewerDialog: UnwrapRef<typeof import('../../src/composables/file/useOfficeViewerDialog.js')['default']>
|
|
703
|
+
readonly useOffsetPagination: UnwrapRef<typeof import('@vueuse/core')['useOffsetPagination']>
|
|
704
|
+
readonly useOnline: UnwrapRef<typeof import('@vueuse/core')['useOnline']>
|
|
705
|
+
readonly usePageLeave: UnwrapRef<typeof import('@vueuse/core')['usePageLeave']>
|
|
706
|
+
readonly useParallax: UnwrapRef<typeof import('@vueuse/core')['useParallax']>
|
|
707
|
+
readonly useParentElement: UnwrapRef<typeof import('@vueuse/core')['useParentElement']>
|
|
708
|
+
readonly usePdfViewerDialog: UnwrapRef<typeof import('../../src/composables/file/usePdfViewerDialog.js')['default']>
|
|
709
|
+
readonly usePerformanceObserver: UnwrapRef<typeof import('@vueuse/core')['usePerformanceObserver']>
|
|
710
|
+
readonly usePermission: UnwrapRef<typeof import('@vueuse/core')['usePermission']>
|
|
711
|
+
readonly usePointer: UnwrapRef<typeof import('@vueuse/core')['usePointer']>
|
|
712
|
+
readonly usePointerLock: UnwrapRef<typeof import('@vueuse/core')['usePointerLock']>
|
|
713
|
+
readonly usePointerSwipe: UnwrapRef<typeof import('@vueuse/core')['usePointerSwipe']>
|
|
714
|
+
readonly usePreferredColorScheme: UnwrapRef<typeof import('@vueuse/core')['usePreferredColorScheme']>
|
|
715
|
+
readonly usePreferredContrast: UnwrapRef<typeof import('@vueuse/core')['usePreferredContrast']>
|
|
716
|
+
readonly usePreferredDark: UnwrapRef<typeof import('@vueuse/core')['usePreferredDark']>
|
|
717
|
+
readonly usePreferredLanguages: UnwrapRef<typeof import('@vueuse/core')['usePreferredLanguages']>
|
|
718
|
+
readonly usePreferredReducedMotion: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedMotion']>
|
|
719
|
+
readonly usePrevious: UnwrapRef<typeof import('@vueuse/core')['usePrevious']>
|
|
720
|
+
readonly useRafFn: UnwrapRef<typeof import('@vueuse/core')['useRafFn']>
|
|
721
|
+
readonly useRefHistory: UnwrapRef<typeof import('@vueuse/core')['useRefHistory']>
|
|
722
|
+
readonly useResizeObserver: UnwrapRef<typeof import('@vueuse/core')['useResizeObserver']>
|
|
723
|
+
readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
|
|
724
|
+
readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
|
|
725
|
+
readonly useRouterData: UnwrapRef<typeof import('../../src/composables/useRouterData.js')['default']>
|
|
726
|
+
readonly useScreenOrientation: UnwrapRef<typeof import('@vueuse/core')['useScreenOrientation']>
|
|
727
|
+
readonly useScreenSafeArea: UnwrapRef<typeof import('@vueuse/core')['useScreenSafeArea']>
|
|
728
|
+
readonly useScriptTag: UnwrapRef<typeof import('@vueuse/core')['useScriptTag']>
|
|
729
|
+
readonly useScroll: UnwrapRef<typeof import('@vueuse/core')['useScroll']>
|
|
730
|
+
readonly useScrollLock: UnwrapRef<typeof import('@vueuse/core')['useScrollLock']>
|
|
731
|
+
readonly useSessionStorage: UnwrapRef<typeof import('@vueuse/core')['useSessionStorage']>
|
|
732
|
+
readonly useSetting: UnwrapRef<typeof import('../../src/composables/header/useSetting.js')['default']>
|
|
733
|
+
readonly useShare: UnwrapRef<typeof import('@vueuse/core')['useShare']>
|
|
734
|
+
readonly useShareActions: UnwrapRef<typeof import('../../src/composables/file/useShareActions.js')['default']>
|
|
735
|
+
readonly useShareData: UnwrapRef<typeof import('../../src/composables/share/useShareData.js')['default']>
|
|
736
|
+
readonly useShareTableOperator: UnwrapRef<typeof import('../../src/composables/file/useShareTableOperator.js')['default']>
|
|
737
|
+
readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
|
|
738
|
+
readonly useSorted: UnwrapRef<typeof import('@vueuse/core')['useSorted']>
|
|
739
|
+
readonly useSpeechRecognition: UnwrapRef<typeof import('@vueuse/core')['useSpeechRecognition']>
|
|
740
|
+
readonly useSpeechSynthesis: UnwrapRef<typeof import('@vueuse/core')['useSpeechSynthesis']>
|
|
741
|
+
readonly useSsoConfig: UnwrapRef<typeof import('../../src/composables/admin/sso/useSsoConfig.js')['default']>
|
|
742
|
+
readonly useStepper: UnwrapRef<typeof import('@vueuse/core')['useStepper']>
|
|
743
|
+
readonly useStorage: UnwrapRef<typeof import('@vueuse/core')['useStorage']>
|
|
744
|
+
readonly useStorageAsync: UnwrapRef<typeof import('@vueuse/core')['useStorageAsync']>
|
|
745
|
+
readonly useStyleTag: UnwrapRef<typeof import('@vueuse/core')['useStyleTag']>
|
|
746
|
+
readonly useSupported: UnwrapRef<typeof import('@vueuse/core')['useSupported']>
|
|
747
|
+
readonly useSwipe: UnwrapRef<typeof import('@vueuse/core')['useSwipe']>
|
|
748
|
+
readonly useTableOperator: UnwrapRef<typeof import('../../src/composables/file/useTableOperator.js')['default']>
|
|
749
|
+
readonly useTemplateRef: UnwrapRef<typeof import('vue')['useTemplateRef']>
|
|
750
|
+
readonly useTemplateRefsList: UnwrapRef<typeof import('@vueuse/core')['useTemplateRefsList']>
|
|
751
|
+
readonly useTextDirection: UnwrapRef<typeof import('@vueuse/core')['useTextDirection']>
|
|
752
|
+
readonly useTextSelection: UnwrapRef<typeof import('@vueuse/core')['useTextSelection']>
|
|
753
|
+
readonly useTextViewerDialog: UnwrapRef<typeof import('../../src/composables/file/useTextViewerDialog.js')['default']>
|
|
754
|
+
readonly useTextareaAutosize: UnwrapRef<typeof import('@vueuse/core')['useTextareaAutosize']>
|
|
755
|
+
readonly useThree3dPreviewDialog: UnwrapRef<typeof import('../../src/composables/file/useThree3dPreviewDialog.js')['default']>
|
|
756
|
+
readonly useThrottle: UnwrapRef<typeof import('@vueuse/core')['useThrottle']>
|
|
757
|
+
readonly useThrottleFn: UnwrapRef<typeof import('@vueuse/core')['useThrottleFn']>
|
|
758
|
+
readonly useThrottledRefHistory: UnwrapRef<typeof import('@vueuse/core')['useThrottledRefHistory']>
|
|
759
|
+
readonly useTimeAgo: UnwrapRef<typeof import('@vueuse/core')['useTimeAgo']>
|
|
760
|
+
readonly useTimeout: UnwrapRef<typeof import('@vueuse/core')['useTimeout']>
|
|
761
|
+
readonly useTimeoutFn: UnwrapRef<typeof import('@vueuse/core')['useTimeoutFn']>
|
|
762
|
+
readonly useTimeoutPoll: UnwrapRef<typeof import('@vueuse/core')['useTimeoutPoll']>
|
|
763
|
+
readonly useTimestamp: UnwrapRef<typeof import('@vueuse/core')['useTimestamp']>
|
|
764
|
+
readonly useTitle: UnwrapRef<typeof import('@vueuse/core')['useTitle']>
|
|
765
|
+
readonly useToNumber: UnwrapRef<typeof import('@vueuse/core')['useToNumber']>
|
|
766
|
+
readonly useToString: UnwrapRef<typeof import('@vueuse/core')['useToString']>
|
|
767
|
+
readonly useToggle: UnwrapRef<typeof import('@vueuse/core')['useToggle']>
|
|
768
|
+
readonly useTransition: UnwrapRef<typeof import('@vueuse/core')['useTransition']>
|
|
769
|
+
readonly useUrlSearchParams: UnwrapRef<typeof import('@vueuse/core')['useUrlSearchParams']>
|
|
770
|
+
readonly useUserMedia: UnwrapRef<typeof import('@vueuse/core')['useUserMedia']>
|
|
771
|
+
readonly useVModel: UnwrapRef<typeof import('@vueuse/core')['useVModel']>
|
|
772
|
+
readonly useVModels: UnwrapRef<typeof import('@vueuse/core')['useVModels']>
|
|
773
|
+
readonly useVibrate: UnwrapRef<typeof import('@vueuse/core')['useVibrate']>
|
|
774
|
+
readonly useVideoPlayerDialog: UnwrapRef<typeof import('../../src/composables/file/useVideoPlayerDialog.js')['default']>
|
|
775
|
+
readonly useVirtualList: UnwrapRef<typeof import('@vueuse/core')['useVirtualList']>
|
|
776
|
+
readonly useWakeLock: UnwrapRef<typeof import('@vueuse/core')['useWakeLock']>
|
|
777
|
+
readonly useWebNotification: UnwrapRef<typeof import('@vueuse/core')['useWebNotification']>
|
|
778
|
+
readonly useWebSocket: UnwrapRef<typeof import('@vueuse/core')['useWebSocket']>
|
|
779
|
+
readonly useWebWorker: UnwrapRef<typeof import('@vueuse/core')['useWebWorker']>
|
|
780
|
+
readonly useWebWorkerFn: UnwrapRef<typeof import('@vueuse/core')['useWebWorkerFn']>
|
|
781
|
+
readonly useWindowFocus: UnwrapRef<typeof import('@vueuse/core')['useWindowFocus']>
|
|
782
|
+
readonly useWindowScroll: UnwrapRef<typeof import('@vueuse/core')['useWindowScroll']>
|
|
783
|
+
readonly useWindowSize: UnwrapRef<typeof import('@vueuse/core')['useWindowSize']>
|
|
784
|
+
readonly userCopy: UnwrapRef<typeof import('../../src/composables/admin/user/user-copy.js')['default']>
|
|
785
|
+
readonly vb: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/vb/index')['default']>
|
|
786
|
+
readonly vbscript: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/vbscript/index')['default']>
|
|
787
|
+
readonly watch: UnwrapRef<typeof import('vue')['watch']>
|
|
788
|
+
readonly watchArray: UnwrapRef<typeof import('@vueuse/core')['watchArray']>
|
|
789
|
+
readonly watchAtMost: UnwrapRef<typeof import('@vueuse/core')['watchAtMost']>
|
|
790
|
+
readonly watchDebounced: UnwrapRef<typeof import('@vueuse/core')['watchDebounced']>
|
|
791
|
+
readonly watchDeep: UnwrapRef<typeof import('@vueuse/core')['watchDeep']>
|
|
792
|
+
readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
|
|
793
|
+
readonly watchIgnorable: UnwrapRef<typeof import('@vueuse/core')['watchIgnorable']>
|
|
794
|
+
readonly watchImmediate: UnwrapRef<typeof import('@vueuse/core')['watchImmediate']>
|
|
795
|
+
readonly watchOnce: UnwrapRef<typeof import('@vueuse/core')['watchOnce']>
|
|
796
|
+
readonly watchPausable: UnwrapRef<typeof import('@vueuse/core')['watchPausable']>
|
|
797
|
+
readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
|
|
798
|
+
readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
|
|
799
|
+
readonly watchThrottled: UnwrapRef<typeof import('@vueuse/core')['watchThrottled']>
|
|
800
|
+
readonly watchTriggerable: UnwrapRef<typeof import('@vueuse/core')['watchTriggerable']>
|
|
801
|
+
readonly watchWithFilter: UnwrapRef<typeof import('@vueuse/core')['watchWithFilter']>
|
|
802
|
+
readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
|
|
803
|
+
readonly xml: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/xml/index')['default']>
|
|
804
|
+
readonly yaml: UnwrapRef<typeof import('../../src/components/vue-codemirror/lang-code/yaml/index')['default']>
|
|
805
|
+
}
|
|
806
|
+
}
|