create-young-proj 1.7.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. package/CHANGELOG.md +95 -1
  2. package/README.md +6 -1
  3. package/dist/index.mjs +19 -19
  4. package/package.json +1 -1
  5. package/src/index.ts +6 -1
  6. package/template-admin-server/src/service/role.service.ts +5 -3
  7. package/template-big-screen/.editorconfig +14 -0
  8. package/template-big-screen/.nvmrc +1 -0
  9. package/template-big-screen/.vscode/extensions.json +12 -0
  10. package/template-big-screen/.vscode/settings.json +39 -0
  11. package/template-big-screen/Dockerfile +49 -0
  12. package/template-big-screen/README.md +20 -0
  13. package/template-big-screen/_gitignore +23 -0
  14. package/template-big-screen/_npmrc +2 -0
  15. package/template-big-screen/_nvmrc +1 -0
  16. package/template-big-screen/boot.mjs +16 -0
  17. package/template-big-screen/config/.devrc +1 -0
  18. package/template-big-screen/config/.onlinerc +1 -0
  19. package/template-big-screen/config/.testrc +1 -0
  20. package/template-big-screen/eslint.config.js +34 -0
  21. package/template-big-screen/index.html +48 -0
  22. package/template-big-screen/nitro.config.ts +23 -0
  23. package/template-big-screen/package.json +66 -0
  24. package/template-big-screen/plugins/init.ts +57 -0
  25. package/template-big-screen/public/favicon.svg +3 -0
  26. package/template-big-screen/routes/api/[...all].ts +19 -0
  27. package/template-big-screen/routes/get/env.ts +13 -0
  28. package/template-big-screen/src/App.vue +24 -0
  29. package/template-big-screen/src/apis/get.ts +77 -0
  30. package/template-big-screen/src/apis/index.ts +53 -0
  31. package/template-big-screen/src/apis/post.ts +14 -0
  32. package/template-big-screen/src/assets/data/china.json +1 -0
  33. package/template-big-screen/src/components/YoungCountUp.vue +29 -0
  34. package/template-big-screen/src/components/YoungECharts/config.ts +56 -0
  35. package/template-big-screen/src/components/YoungECharts/index.vue +111 -0
  36. package/template-big-screen/src/components/YoungHeader.vue +54 -0
  37. package/template-big-screen/src/components/YoungSectionContainer.vue +55 -0
  38. package/template-big-screen/src/components/YoungSectionHeader.vue +23 -0
  39. package/template-big-screen/src/composables/breakPoint.ts +20 -0
  40. package/template-big-screen/src/composables/dark.ts +52 -0
  41. package/template-big-screen/src/composables/echarts.ts +17 -0
  42. package/template-big-screen/src/composables/loadData.ts +38 -0
  43. package/template-big-screen/src/directives/ellipsis.ts +20 -0
  44. package/template-big-screen/src/directives/index.ts +13 -0
  45. package/template-big-screen/src/enums/breakpointEnum.ts +9 -0
  46. package/template-big-screen/src/layouts/404.vue +19 -0
  47. package/template-big-screen/src/layouts/blank.vue +9 -0
  48. package/template-big-screen/src/layouts/default.vue +17 -0
  49. package/template-big-screen/src/main.ts +59 -0
  50. package/template-big-screen/src/modules/index.ts +8 -0
  51. package/template-big-screen/src/modules/pinia.ts +11 -0
  52. package/template-big-screen/src/modules/router.ts +28 -0
  53. package/template-big-screen/src/pages/[...all].vue +16 -0
  54. package/template-big-screen/src/pages/electricity/build.vue +135 -0
  55. package/template-big-screen/src/pages/electricity/reliability.vue +137 -0
  56. package/template-big-screen/src/pages/electricity/sale-and-cost.vue +158 -0
  57. package/template-big-screen/src/pages/index.vue +59 -0
  58. package/template-big-screen/src/pages/kpi.vue +129 -0
  59. package/template-big-screen/src/pages/manage-improve.vue +114 -0
  60. package/template-big-screen/src/pages/social/condition.vue +202 -0
  61. package/template-big-screen/src/pages/social/electricity-usage.vue +140 -0
  62. package/template-big-screen/src/styles/index.scss +82 -0
  63. package/template-big-screen/tsconfig.json +38 -0
  64. package/template-big-screen/types/auto-imports.d.ts +949 -0
  65. package/template-big-screen/types/components.d.ts +19 -0
  66. package/template-big-screen/types/echarts.d.ts +36 -0
  67. package/template-big-screen/types/index.d.ts +45 -0
  68. package/template-big-screen/types/type.d.ts +38 -0
  69. package/template-big-screen/uno.config.ts +68 -0
  70. package/template-big-screen/vite.config.ts +131 -0
  71. package/template-big-screen/yarn.lock +7443 -0
  72. package/template-nuxt-admin/README.md +3 -3
  73. package/template-nuxt-admin/boot.mjs +4 -1
  74. package/template-nuxt-admin/composables/config.ts +2 -2
  75. package/template-nuxt-admin/config/.devrc +1 -1
  76. package/template-nuxt-admin/config/.onlinerc +1 -1
  77. package/template-nuxt-admin/config/.testrc +1 -1
  78. package/template-nuxt-admin/nuxt.config.ts +14 -5
  79. package/template-nuxt-admin/package.json +12 -11
  80. package/template-nuxt-admin/pages/system/api.vue +6 -6
  81. package/template-nuxt-admin/pages/system/role.vue +4 -4
  82. package/template-nuxt-admin/pages/system/user.vue +4 -4
  83. package/template-nuxt-admin/server/api/[...all].ts +10 -3
  84. package/template-nuxt-admin/server/plugins/env.ts +5 -4
  85. package/template-nuxt-admin/uno.config.ts +1 -9
  86. package/template-nuxt-admin/yarn.lock +3659 -3363
  87. package/template-nuxt-mobile/package.json +1 -0
  88. package/template-nuxt-mobile/server/utils/proxy.ts +1 -30
  89. package/template-nuxt-mobile/yarn.lock +9 -0
  90. package/template-nuxt-website/package.json +1 -0
  91. package/template-nuxt-website/server/utils/proxy.ts +1 -30
  92. package/template-nuxt-website/yarn.lock +9 -0
  93. package/template-nuxt-admin/server/utils/index.ts +0 -36
@@ -0,0 +1,949 @@
1
+ /* eslint-disable */
2
+ /* prettier-ignore */
3
+ // @ts-nocheck
4
+ // noinspection JSUnusedGlobalSymbols
5
+ // Generated by unplugin-auto-import
6
+ export {}
7
+ declare global {
8
+ const Breakpoint: typeof import('../src/enums/breakpointEnum')['Breakpoint']
9
+ const EffectScope: typeof import('vue')['EffectScope']
10
+ const acceptHMRUpdate: typeof import('pinia')['acceptHMRUpdate']
11
+ const ajaxEndLoading: typeof import('../src/apis/index')['ajaxEndLoading']
12
+ const ajaxStartLoading: typeof import('../src/apis/index')['ajaxStartLoading']
13
+ const apis: typeof import('../src/apis/index')['apis']
14
+ const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
15
+ const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
16
+ const computed: typeof import('vue')['computed']
17
+ const computedAsync: typeof import('@vueuse/core')['computedAsync']
18
+ const computedEager: typeof import('@vueuse/core')['computedEager']
19
+ const computedInject: typeof import('@vueuse/core')['computedInject']
20
+ const computedWithControl: typeof import('@vueuse/core')['computedWithControl']
21
+ const config: typeof import('../src/components/YoungECharts/config')['default']
22
+ const controlledComputed: typeof import('@vueuse/core')['controlledComputed']
23
+ const controlledRef: typeof import('@vueuse/core')['controlledRef']
24
+ const createApp: typeof import('vue')['createApp']
25
+ const createEventHook: typeof import('@vueuse/core')['createEventHook']
26
+ const createGlobalState: typeof import('@vueuse/core')['createGlobalState']
27
+ const createInjectionState: typeof import('@vueuse/core')['createInjectionState']
28
+ const createPinia: typeof import('pinia')['createPinia']
29
+ const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn']
30
+ const createReusableTemplate: typeof import('@vueuse/core')['createReusableTemplate']
31
+ const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable']
32
+ const createTemplatePromise: typeof import('@vueuse/core')['createTemplatePromise']
33
+ const createUnrefFn: typeof import('@vueuse/core')['createUnrefFn']
34
+ const customRef: typeof import('vue')['customRef']
35
+ const debouncedRef: typeof import('@vueuse/core')['debouncedRef']
36
+ const debouncedWatch: typeof import('@vueuse/core')['debouncedWatch']
37
+ const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
38
+ const defineComponent: typeof import('vue')['defineComponent']
39
+ const defineStore: typeof import('pinia')['defineStore']
40
+ const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
41
+ const effectScope: typeof import('vue')['effectScope']
42
+ const extendRef: typeof import('@vueuse/core')['extendRef']
43
+ const getActivePinia: typeof import('pinia')['getActivePinia']
44
+ const getCurrentInstance: typeof import('vue')['getCurrentInstance']
45
+ const getCurrentScope: typeof import('vue')['getCurrentScope']
46
+ const h: typeof import('vue')['h']
47
+ const http: typeof import('../src/apis/index')['http']
48
+ const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
49
+ const inject: typeof import('vue')['inject']
50
+ const injectLocal: typeof import('@vueuse/core')['injectLocal']
51
+ const isDark: typeof import('../src/composables/dark')['isDark']
52
+ const isDefined: typeof import('@vueuse/core')['isDefined']
53
+ const isProxy: typeof import('vue')['isProxy']
54
+ const isReactive: typeof import('vue')['isReactive']
55
+ const isReadonly: typeof import('vue')['isReadonly']
56
+ const isRef: typeof import('vue')['isRef']
57
+ const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable']
58
+ const mapActions: typeof import('pinia')['mapActions']
59
+ const mapGetters: typeof import('pinia')['mapGetters']
60
+ const mapState: typeof import('pinia')['mapState']
61
+ const mapStores: typeof import('pinia')['mapStores']
62
+ const mapWritableState: typeof import('pinia')['mapWritableState']
63
+ const markRaw: typeof import('vue')['markRaw']
64
+ const nextTick: typeof import('vue')['nextTick']
65
+ const onActivated: typeof import('vue')['onActivated']
66
+ const onBeforeMount: typeof import('vue')['onBeforeMount']
67
+ const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave']
68
+ const onBeforeRouteUpdate: typeof import('vue-router')['onBeforeRouteUpdate']
69
+ const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
70
+ const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
71
+ const onClickOutside: typeof import('@vueuse/core')['onClickOutside']
72
+ const onDeactivated: typeof import('vue')['onDeactivated']
73
+ const onErrorCaptured: typeof import('vue')['onErrorCaptured']
74
+ const onKeyStroke: typeof import('@vueuse/core')['onKeyStroke']
75
+ const onLongPress: typeof import('@vueuse/core')['onLongPress']
76
+ const onMounted: typeof import('vue')['onMounted']
77
+ const onRenderTracked: typeof import('vue')['onRenderTracked']
78
+ const onRenderTriggered: typeof import('vue')['onRenderTriggered']
79
+ const onScopeDispose: typeof import('vue')['onScopeDispose']
80
+ const onServerPrefetch: typeof import('vue')['onServerPrefetch']
81
+ const onStartTyping: typeof import('@vueuse/core')['onStartTyping']
82
+ const onUnmounted: typeof import('vue')['onUnmounted']
83
+ const onUpdated: typeof import('vue')['onUpdated']
84
+ const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
85
+ const pinia: typeof import('../src/modules/pinia')['default']
86
+ const preferredDark: typeof import('../src/composables/dark')['preferredDark']
87
+ const provide: typeof import('vue')['provide']
88
+ const provideLocal: typeof import('@vueuse/core')['provideLocal']
89
+ const reactify: typeof import('@vueuse/core')['reactify']
90
+ const reactifyObject: typeof import('@vueuse/core')['reactifyObject']
91
+ const reactive: typeof import('vue')['reactive']
92
+ const reactiveComputed: typeof import('@vueuse/core')['reactiveComputed']
93
+ const reactiveOmit: typeof import('@vueuse/core')['reactiveOmit']
94
+ const reactivePick: typeof import('@vueuse/core')['reactivePick']
95
+ const readonly: typeof import('vue')['readonly']
96
+ const ref: typeof import('vue')['ref']
97
+ const refAutoReset: typeof import('@vueuse/core')['refAutoReset']
98
+ const refDebounced: typeof import('@vueuse/core')['refDebounced']
99
+ const refDefault: typeof import('@vueuse/core')['refDefault']
100
+ const refThrottled: typeof import('@vueuse/core')['refThrottled']
101
+ const refWithControl: typeof import('@vueuse/core')['refWithControl']
102
+ const resolveComponent: typeof import('vue')['resolveComponent']
103
+ const resolveRef: typeof import('@vueuse/core')['resolveRef']
104
+ const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
105
+ const router: typeof import('../src/modules/router')['default']
106
+ const setActivePinia: typeof import('pinia')['setActivePinia']
107
+ const setMapStoreSuffix: typeof import('pinia')['setMapStoreSuffix']
108
+ const setupModules: typeof import('../src/modules/index')['setupModules']
109
+ const shallowReactive: typeof import('vue')['shallowReactive']
110
+ const shallowReadonly: typeof import('vue')['shallowReadonly']
111
+ const shallowRef: typeof import('vue')['shallowRef']
112
+ const storeToRefs: typeof import('pinia')['storeToRefs']
113
+ const syncRef: typeof import('@vueuse/core')['syncRef']
114
+ const syncRefs: typeof import('@vueuse/core')['syncRefs']
115
+ const templateRef: typeof import('@vueuse/core')['templateRef']
116
+ const throttledRef: typeof import('@vueuse/core')['throttledRef']
117
+ const throttledWatch: typeof import('@vueuse/core')['throttledWatch']
118
+ const toRaw: typeof import('vue')['toRaw']
119
+ const toReactive: typeof import('@vueuse/core')['toReactive']
120
+ const toRef: typeof import('vue')['toRef']
121
+ const toRefs: typeof import('vue')['toRefs']
122
+ const toValue: typeof import('vue')['toValue']
123
+ const toggleDark: typeof import('../src/composables/dark')['toggleDark']
124
+ const triggerRef: typeof import('vue')['triggerRef']
125
+ const tryOnBeforeMount: typeof import('@vueuse/core')['tryOnBeforeMount']
126
+ const tryOnBeforeUnmount: typeof import('@vueuse/core')['tryOnBeforeUnmount']
127
+ const tryOnMounted: typeof import('@vueuse/core')['tryOnMounted']
128
+ const tryOnScopeDispose: typeof import('@vueuse/core')['tryOnScopeDispose']
129
+ const tryOnUnmounted: typeof import('@vueuse/core')['tryOnUnmounted']
130
+ const unref: typeof import('vue')['unref']
131
+ const unrefElement: typeof import('@vueuse/core')['unrefElement']
132
+ const until: typeof import('@vueuse/core')['until']
133
+ const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
134
+ const useAnimate: typeof import('@vueuse/core')['useAnimate']
135
+ const useAppBreakpoint: typeof import('../src/composables/breakPoint')['useAppBreakpoint']
136
+ const useArrayDifference: typeof import('@vueuse/core')['useArrayDifference']
137
+ const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery']
138
+ const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter']
139
+ const useArrayFind: typeof import('@vueuse/core')['useArrayFind']
140
+ const useArrayFindIndex: typeof import('@vueuse/core')['useArrayFindIndex']
141
+ const useArrayFindLast: typeof import('@vueuse/core')['useArrayFindLast']
142
+ const useArrayIncludes: typeof import('@vueuse/core')['useArrayIncludes']
143
+ const useArrayJoin: typeof import('@vueuse/core')['useArrayJoin']
144
+ const useArrayMap: typeof import('@vueuse/core')['useArrayMap']
145
+ const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
146
+ const useArraySome: typeof import('@vueuse/core')['useArraySome']
147
+ const useArrayUnique: typeof import('@vueuse/core')['useArrayUnique']
148
+ const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue']
149
+ const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
150
+ const useAttrs: typeof import('vue')['useAttrs']
151
+ const useBase64: typeof import('@vueuse/core')['useBase64']
152
+ const useBattery: typeof import('@vueuse/core')['useBattery']
153
+ const useBluetooth: typeof import('@vueuse/core')['useBluetooth']
154
+ const useBreakpoints: typeof import('@vueuse/core')['useBreakpoints']
155
+ const useBroadcastChannel: typeof import('@vueuse/core')['useBroadcastChannel']
156
+ const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']
157
+ const useCached: typeof import('@vueuse/core')['useCached']
158
+ const useClipboard: typeof import('@vueuse/core')['useClipboard']
159
+ const useClipboardItems: typeof import('@vueuse/core')['useClipboardItems']
160
+ const useCloned: typeof import('@vueuse/core')['useCloned']
161
+ const useColorMode: typeof import('@vueuse/core')['useColorMode']
162
+ const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog']
163
+ const useCounter: typeof import('@vueuse/core')['useCounter']
164
+ const useCssModule: typeof import('vue')['useCssModule']
165
+ const useCssVar: typeof import('@vueuse/core')['useCssVar']
166
+ const useCssVars: typeof import('vue')['useCssVars']
167
+ const useCurrentElement: typeof import('@vueuse/core')['useCurrentElement']
168
+ const useCycleList: typeof import('@vueuse/core')['useCycleList']
169
+ const useDark: typeof import('@vueuse/core')['useDark']
170
+ const useDateFormat: typeof import('@vueuse/core')['useDateFormat']
171
+ const useDebounce: typeof import('@vueuse/core')['useDebounce']
172
+ const useDebounceFn: typeof import('@vueuse/core')['useDebounceFn']
173
+ const useDebouncedRefHistory: typeof import('@vueuse/core')['useDebouncedRefHistory']
174
+ const useDeviceMotion: typeof import('@vueuse/core')['useDeviceMotion']
175
+ const useDeviceOrientation: typeof import('@vueuse/core')['useDeviceOrientation']
176
+ const useDevicePixelRatio: typeof import('@vueuse/core')['useDevicePixelRatio']
177
+ const useDevicesList: typeof import('@vueuse/core')['useDevicesList']
178
+ const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
179
+ const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
180
+ const useDraggable: typeof import('@vueuse/core')['useDraggable']
181
+ const useDropZone: typeof import('@vueuse/core')['useDropZone']
182
+ const useEcharts: typeof import('../src/composables/echarts')['useEcharts']
183
+ const useElementBounding: typeof import('@vueuse/core')['useElementBounding']
184
+ const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
185
+ const useElementHover: typeof import('@vueuse/core')['useElementHover']
186
+ const useElementSize: typeof import('@vueuse/core')['useElementSize']
187
+ const useElementVisibility: typeof import('@vueuse/core')['useElementVisibility']
188
+ const useEventBus: typeof import('@vueuse/core')['useEventBus']
189
+ const useEventListener: typeof import('@vueuse/core')['useEventListener']
190
+ const useEventSource: typeof import('@vueuse/core')['useEventSource']
191
+ const useEyeDropper: typeof import('@vueuse/core')['useEyeDropper']
192
+ const useFavicon: typeof import('@vueuse/core')['useFavicon']
193
+ const useFetch: typeof import('@vueuse/core')['useFetch']
194
+ const useFileDialog: typeof import('@vueuse/core')['useFileDialog']
195
+ const useFileSystemAccess: typeof import('@vueuse/core')['useFileSystemAccess']
196
+ const useFocus: typeof import('@vueuse/core')['useFocus']
197
+ const useFocusWithin: typeof import('@vueuse/core')['useFocusWithin']
198
+ const useFps: typeof import('@vueuse/core')['useFps']
199
+ const useFullscreen: typeof import('@vueuse/core')['useFullscreen']
200
+ const useGamepad: typeof import('@vueuse/core')['useGamepad']
201
+ const useGeolocation: typeof import('@vueuse/core')['useGeolocation']
202
+ const useGet: typeof import('../src/apis/get')['useGet']
203
+ const useHead: typeof import('@vueuse/head')['useHead']
204
+ const useIdle: typeof import('@vueuse/core')['useIdle']
205
+ const useImage: typeof import('@vueuse/core')['useImage']
206
+ const useInfiniteScroll: typeof import('@vueuse/core')['useInfiniteScroll']
207
+ const useIntersectionObserver: typeof import('@vueuse/core')['useIntersectionObserver']
208
+ const useInterval: typeof import('@vueuse/core')['useInterval']
209
+ const useIntervalFn: typeof import('@vueuse/core')['useIntervalFn']
210
+ const useKeyModifier: typeof import('@vueuse/core')['useKeyModifier']
211
+ const useLastChanged: typeof import('@vueuse/core')['useLastChanged']
212
+ const useLink: typeof import('vue-router')['useLink']
213
+ const useLoadData: typeof import('../src/composables/loadData')['useLoadData']
214
+ const useLocalStorage: typeof import('@vueuse/core')['useLocalStorage']
215
+ const useMagicKeys: typeof import('@vueuse/core')['useMagicKeys']
216
+ const useManualRefHistory: typeof import('@vueuse/core')['useManualRefHistory']
217
+ const useMediaControls: typeof import('@vueuse/core')['useMediaControls']
218
+ const useMediaQuery: typeof import('@vueuse/core')['useMediaQuery']
219
+ const useMemoize: typeof import('@vueuse/core')['useMemoize']
220
+ const useMemory: typeof import('@vueuse/core')['useMemory']
221
+ const useMounted: typeof import('@vueuse/core')['useMounted']
222
+ const useMouse: typeof import('@vueuse/core')['useMouse']
223
+ const useMouseInElement: typeof import('@vueuse/core')['useMouseInElement']
224
+ const useMousePressed: typeof import('@vueuse/core')['useMousePressed']
225
+ const useMutationObserver: typeof import('@vueuse/core')['useMutationObserver']
226
+ const useNavigatorLanguage: typeof import('@vueuse/core')['useNavigatorLanguage']
227
+ const useNetwork: typeof import('@vueuse/core')['useNetwork']
228
+ const useNow: typeof import('@vueuse/core')['useNow']
229
+ const useObjectUrl: typeof import('@vueuse/core')['useObjectUrl']
230
+ const useOffsetPagination: typeof import('@vueuse/core')['useOffsetPagination']
231
+ const useOnline: typeof import('@vueuse/core')['useOnline']
232
+ const usePageLeave: typeof import('@vueuse/core')['usePageLeave']
233
+ const useParallax: typeof import('@vueuse/core')['useParallax']
234
+ const useParentElement: typeof import('@vueuse/core')['useParentElement']
235
+ const usePerformanceObserver: typeof import('@vueuse/core')['usePerformanceObserver']
236
+ const usePermission: typeof import('@vueuse/core')['usePermission']
237
+ const usePointer: typeof import('@vueuse/core')['usePointer']
238
+ const usePointerLock: typeof import('@vueuse/core')['usePointerLock']
239
+ const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe']
240
+ const usePost: typeof import('../src/apis/post')['usePost']
241
+ const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme']
242
+ const usePreferredContrast: typeof import('@vueuse/core')['usePreferredContrast']
243
+ const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark']
244
+ const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages']
245
+ const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion']
246
+ const usePrevious: typeof import('@vueuse/core')['usePrevious']
247
+ const useRafFn: typeof import('@vueuse/core')['useRafFn']
248
+ const useRefHistory: typeof import('@vueuse/core')['useRefHistory']
249
+ const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver']
250
+ const useRoute: typeof import('vue-router')['useRoute']
251
+ const useRouter: typeof import('vue-router')['useRouter']
252
+ const useScreenOrientation: typeof import('@vueuse/core')['useScreenOrientation']
253
+ const useScreenSafeArea: typeof import('@vueuse/core')['useScreenSafeArea']
254
+ const useScriptTag: typeof import('@vueuse/core')['useScriptTag']
255
+ const useScroll: typeof import('@vueuse/core')['useScroll']
256
+ const useScrollLock: typeof import('@vueuse/core')['useScrollLock']
257
+ const useSeoMeta: typeof import('@vueuse/head')['useSeoMeta']
258
+ const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage']
259
+ const useShare: typeof import('@vueuse/core')['useShare']
260
+ const useSlots: typeof import('vue')['useSlots']
261
+ const useSorted: typeof import('@vueuse/core')['useSorted']
262
+ const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition']
263
+ const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis']
264
+ const useStepper: typeof import('@vueuse/core')['useStepper']
265
+ const useStorage: typeof import('@vueuse/core')['useStorage']
266
+ const useStorageAsync: typeof import('@vueuse/core')['useStorageAsync']
267
+ const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
268
+ const useSupported: typeof import('@vueuse/core')['useSupported']
269
+ const useSwipe: typeof import('@vueuse/core')['useSwipe']
270
+ const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
271
+ const useTextDirection: typeof import('@vueuse/core')['useTextDirection']
272
+ const useTextSelection: typeof import('@vueuse/core')['useTextSelection']
273
+ const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize']
274
+ const useThrottle: typeof import('@vueuse/core')['useThrottle']
275
+ const useThrottleFn: typeof import('@vueuse/core')['useThrottleFn']
276
+ const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory']
277
+ const useTimeAgo: typeof import('@vueuse/core')['useTimeAgo']
278
+ const useTimeout: typeof import('@vueuse/core')['useTimeout']
279
+ const useTimeoutFn: typeof import('@vueuse/core')['useTimeoutFn']
280
+ const useTimeoutPoll: typeof import('@vueuse/core')['useTimeoutPoll']
281
+ const useTimestamp: typeof import('@vueuse/core')['useTimestamp']
282
+ const useTitle: typeof import('@vueuse/core')['useTitle']
283
+ const useToNumber: typeof import('@vueuse/core')['useToNumber']
284
+ const useToString: typeof import('@vueuse/core')['useToString']
285
+ const useToggle: typeof import('@vueuse/core')['useToggle']
286
+ const useTransition: typeof import('@vueuse/core')['useTransition']
287
+ const useUrlSearchParams: typeof import('@vueuse/core')['useUrlSearchParams']
288
+ const useUserMedia: typeof import('@vueuse/core')['useUserMedia']
289
+ const useVModel: typeof import('@vueuse/core')['useVModel']
290
+ const useVModels: typeof import('@vueuse/core')['useVModels']
291
+ const useVibrate: typeof import('@vueuse/core')['useVibrate']
292
+ const useVirtualList: typeof import('@vueuse/core')['useVirtualList']
293
+ const useWakeLock: typeof import('@vueuse/core')['useWakeLock']
294
+ const useWebNotification: typeof import('@vueuse/core')['useWebNotification']
295
+ const useWebSocket: typeof import('@vueuse/core')['useWebSocket']
296
+ const useWebWorker: typeof import('@vueuse/core')['useWebWorker']
297
+ const useWebWorkerFn: typeof import('@vueuse/core')['useWebWorkerFn']
298
+ const useWindowFocus: typeof import('@vueuse/core')['useWindowFocus']
299
+ const useWindowScroll: typeof import('@vueuse/core')['useWindowScroll']
300
+ const useWindowSize: typeof import('@vueuse/core')['useWindowSize']
301
+ const watch: typeof import('vue')['watch']
302
+ const watchArray: typeof import('@vueuse/core')['watchArray']
303
+ const watchAtMost: typeof import('@vueuse/core')['watchAtMost']
304
+ const watchDebounced: typeof import('@vueuse/core')['watchDebounced']
305
+ const watchDeep: typeof import('@vueuse/core')['watchDeep']
306
+ const watchEffect: typeof import('vue')['watchEffect']
307
+ const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
308
+ const watchImmediate: typeof import('@vueuse/core')['watchImmediate']
309
+ const watchOnce: typeof import('@vueuse/core')['watchOnce']
310
+ const watchPausable: typeof import('@vueuse/core')['watchPausable']
311
+ const watchPostEffect: typeof import('vue')['watchPostEffect']
312
+ const watchSyncEffect: typeof import('vue')['watchSyncEffect']
313
+ const watchThrottled: typeof import('@vueuse/core')['watchThrottled']
314
+ const watchTriggerable: typeof import('@vueuse/core')['watchTriggerable']
315
+ const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
316
+ const whenever: typeof import('@vueuse/core')['whenever']
317
+ }
318
+ // for type re-export
319
+ declare global {
320
+ // @ts-ignore
321
+ export type { Component, ComponentPublicInstance, ComputedRef, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue'
322
+ import('vue')
323
+ }
324
+ // for vue template auto import
325
+ import { UnwrapRef } from 'vue'
326
+ declare module 'vue' {
327
+ interface GlobalComponents {}
328
+ interface ComponentCustomProperties {
329
+ readonly Breakpoint: UnwrapRef<typeof import('../src/enums/breakpointEnum')['Breakpoint']>
330
+ readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
331
+ readonly acceptHMRUpdate: UnwrapRef<typeof import('pinia')['acceptHMRUpdate']>
332
+ readonly ajaxEndLoading: UnwrapRef<typeof import('../src/apis/index')['ajaxEndLoading']>
333
+ readonly ajaxStartLoading: UnwrapRef<typeof import('../src/apis/index')['ajaxStartLoading']>
334
+ readonly apis: UnwrapRef<typeof import('../src/apis/index')['apis']>
335
+ readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
336
+ readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
337
+ readonly computed: UnwrapRef<typeof import('vue')['computed']>
338
+ readonly computedAsync: UnwrapRef<typeof import('@vueuse/core')['computedAsync']>
339
+ readonly computedEager: UnwrapRef<typeof import('@vueuse/core')['computedEager']>
340
+ readonly computedInject: UnwrapRef<typeof import('@vueuse/core')['computedInject']>
341
+ readonly computedWithControl: UnwrapRef<typeof import('@vueuse/core')['computedWithControl']>
342
+ readonly config: UnwrapRef<typeof import('../src/components/YoungECharts/config')['default']>
343
+ readonly controlledComputed: UnwrapRef<typeof import('@vueuse/core')['controlledComputed']>
344
+ readonly controlledRef: UnwrapRef<typeof import('@vueuse/core')['controlledRef']>
345
+ readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
346
+ readonly createEventHook: UnwrapRef<typeof import('@vueuse/core')['createEventHook']>
347
+ readonly createGlobalState: UnwrapRef<typeof import('@vueuse/core')['createGlobalState']>
348
+ readonly createInjectionState: UnwrapRef<typeof import('@vueuse/core')['createInjectionState']>
349
+ readonly createPinia: UnwrapRef<typeof import('pinia')['createPinia']>
350
+ readonly createReactiveFn: UnwrapRef<typeof import('@vueuse/core')['createReactiveFn']>
351
+ readonly createReusableTemplate: UnwrapRef<typeof import('@vueuse/core')['createReusableTemplate']>
352
+ readonly createSharedComposable: UnwrapRef<typeof import('@vueuse/core')['createSharedComposable']>
353
+ readonly createTemplatePromise: UnwrapRef<typeof import('@vueuse/core')['createTemplatePromise']>
354
+ readonly createUnrefFn: UnwrapRef<typeof import('@vueuse/core')['createUnrefFn']>
355
+ readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
356
+ readonly debouncedRef: UnwrapRef<typeof import('@vueuse/core')['debouncedRef']>
357
+ readonly debouncedWatch: UnwrapRef<typeof import('@vueuse/core')['debouncedWatch']>
358
+ readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
359
+ readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
360
+ readonly defineStore: UnwrapRef<typeof import('pinia')['defineStore']>
361
+ readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
362
+ readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
363
+ readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
364
+ readonly getActivePinia: UnwrapRef<typeof import('pinia')['getActivePinia']>
365
+ readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
366
+ readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
367
+ readonly h: UnwrapRef<typeof import('vue')['h']>
368
+ readonly http: UnwrapRef<typeof import('../src/apis/index')['http']>
369
+ readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
370
+ readonly inject: UnwrapRef<typeof import('vue')['inject']>
371
+ readonly injectLocal: UnwrapRef<typeof import('@vueuse/core')['injectLocal']>
372
+ readonly isDark: UnwrapRef<typeof import('../src/composables/dark')['isDark']>
373
+ readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
374
+ readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
375
+ readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
376
+ readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
377
+ readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
378
+ readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
379
+ readonly mapActions: UnwrapRef<typeof import('pinia')['mapActions']>
380
+ readonly mapGetters: UnwrapRef<typeof import('pinia')['mapGetters']>
381
+ readonly mapState: UnwrapRef<typeof import('pinia')['mapState']>
382
+ readonly mapStores: UnwrapRef<typeof import('pinia')['mapStores']>
383
+ readonly mapWritableState: UnwrapRef<typeof import('pinia')['mapWritableState']>
384
+ readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
385
+ readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
386
+ readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
387
+ readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
388
+ readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
389
+ readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
390
+ readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
391
+ readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
392
+ readonly onClickOutside: UnwrapRef<typeof import('@vueuse/core')['onClickOutside']>
393
+ readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
394
+ readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
395
+ readonly onKeyStroke: UnwrapRef<typeof import('@vueuse/core')['onKeyStroke']>
396
+ readonly onLongPress: UnwrapRef<typeof import('@vueuse/core')['onLongPress']>
397
+ readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
398
+ readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
399
+ readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
400
+ readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
401
+ readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
402
+ readonly onStartTyping: UnwrapRef<typeof import('@vueuse/core')['onStartTyping']>
403
+ readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
404
+ readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
405
+ readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
406
+ readonly pinia: UnwrapRef<typeof import('../src/modules/pinia')['default']>
407
+ readonly preferredDark: UnwrapRef<typeof import('../src/composables/dark')['preferredDark']>
408
+ readonly provide: UnwrapRef<typeof import('vue')['provide']>
409
+ readonly provideLocal: UnwrapRef<typeof import('@vueuse/core')['provideLocal']>
410
+ readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
411
+ readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
412
+ readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
413
+ readonly reactiveComputed: UnwrapRef<typeof import('@vueuse/core')['reactiveComputed']>
414
+ readonly reactiveOmit: UnwrapRef<typeof import('@vueuse/core')['reactiveOmit']>
415
+ readonly reactivePick: UnwrapRef<typeof import('@vueuse/core')['reactivePick']>
416
+ readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
417
+ readonly ref: UnwrapRef<typeof import('vue')['ref']>
418
+ readonly refAutoReset: UnwrapRef<typeof import('@vueuse/core')['refAutoReset']>
419
+ readonly refDebounced: UnwrapRef<typeof import('@vueuse/core')['refDebounced']>
420
+ readonly refDefault: UnwrapRef<typeof import('@vueuse/core')['refDefault']>
421
+ readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
422
+ readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
423
+ readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
424
+ readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
425
+ readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
426
+ readonly router: UnwrapRef<typeof import('../src/modules/router')['default']>
427
+ readonly setActivePinia: UnwrapRef<typeof import('pinia')['setActivePinia']>
428
+ readonly setMapStoreSuffix: UnwrapRef<typeof import('pinia')['setMapStoreSuffix']>
429
+ readonly setupModules: UnwrapRef<typeof import('../src/modules/index')['setupModules']>
430
+ readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
431
+ readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
432
+ readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
433
+ readonly storeToRefs: UnwrapRef<typeof import('pinia')['storeToRefs']>
434
+ readonly syncRef: UnwrapRef<typeof import('@vueuse/core')['syncRef']>
435
+ readonly syncRefs: UnwrapRef<typeof import('@vueuse/core')['syncRefs']>
436
+ readonly templateRef: UnwrapRef<typeof import('@vueuse/core')['templateRef']>
437
+ readonly throttledRef: UnwrapRef<typeof import('@vueuse/core')['throttledRef']>
438
+ readonly throttledWatch: UnwrapRef<typeof import('@vueuse/core')['throttledWatch']>
439
+ readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
440
+ readonly toReactive: UnwrapRef<typeof import('@vueuse/core')['toReactive']>
441
+ readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
442
+ readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
443
+ readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
444
+ readonly toggleDark: UnwrapRef<typeof import('../src/composables/dark')['toggleDark']>
445
+ readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
446
+ readonly tryOnBeforeMount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeMount']>
447
+ readonly tryOnBeforeUnmount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeUnmount']>
448
+ readonly tryOnMounted: UnwrapRef<typeof import('@vueuse/core')['tryOnMounted']>
449
+ readonly tryOnScopeDispose: UnwrapRef<typeof import('@vueuse/core')['tryOnScopeDispose']>
450
+ readonly tryOnUnmounted: UnwrapRef<typeof import('@vueuse/core')['tryOnUnmounted']>
451
+ readonly unref: UnwrapRef<typeof import('vue')['unref']>
452
+ readonly unrefElement: UnwrapRef<typeof import('@vueuse/core')['unrefElement']>
453
+ readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
454
+ readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
455
+ readonly useAnimate: UnwrapRef<typeof import('@vueuse/core')['useAnimate']>
456
+ readonly useAppBreakpoint: UnwrapRef<typeof import('../src/composables/breakPoint')['useAppBreakpoint']>
457
+ readonly useArrayDifference: UnwrapRef<typeof import('@vueuse/core')['useArrayDifference']>
458
+ readonly useArrayEvery: UnwrapRef<typeof import('@vueuse/core')['useArrayEvery']>
459
+ readonly useArrayFilter: UnwrapRef<typeof import('@vueuse/core')['useArrayFilter']>
460
+ readonly useArrayFind: UnwrapRef<typeof import('@vueuse/core')['useArrayFind']>
461
+ readonly useArrayFindIndex: UnwrapRef<typeof import('@vueuse/core')['useArrayFindIndex']>
462
+ readonly useArrayFindLast: UnwrapRef<typeof import('@vueuse/core')['useArrayFindLast']>
463
+ readonly useArrayIncludes: UnwrapRef<typeof import('@vueuse/core')['useArrayIncludes']>
464
+ readonly useArrayJoin: UnwrapRef<typeof import('@vueuse/core')['useArrayJoin']>
465
+ readonly useArrayMap: UnwrapRef<typeof import('@vueuse/core')['useArrayMap']>
466
+ readonly useArrayReduce: UnwrapRef<typeof import('@vueuse/core')['useArrayReduce']>
467
+ readonly useArraySome: UnwrapRef<typeof import('@vueuse/core')['useArraySome']>
468
+ readonly useArrayUnique: UnwrapRef<typeof import('@vueuse/core')['useArrayUnique']>
469
+ readonly useAsyncQueue: UnwrapRef<typeof import('@vueuse/core')['useAsyncQueue']>
470
+ readonly useAsyncState: UnwrapRef<typeof import('@vueuse/core')['useAsyncState']>
471
+ readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
472
+ readonly useBase64: UnwrapRef<typeof import('@vueuse/core')['useBase64']>
473
+ readonly useBattery: UnwrapRef<typeof import('@vueuse/core')['useBattery']>
474
+ readonly useBluetooth: UnwrapRef<typeof import('@vueuse/core')['useBluetooth']>
475
+ readonly useBreakpoints: UnwrapRef<typeof import('@vueuse/core')['useBreakpoints']>
476
+ readonly useBroadcastChannel: UnwrapRef<typeof import('@vueuse/core')['useBroadcastChannel']>
477
+ readonly useBrowserLocation: UnwrapRef<typeof import('@vueuse/core')['useBrowserLocation']>
478
+ readonly useCached: UnwrapRef<typeof import('@vueuse/core')['useCached']>
479
+ readonly useClipboard: UnwrapRef<typeof import('@vueuse/core')['useClipboard']>
480
+ readonly useClipboardItems: UnwrapRef<typeof import('@vueuse/core')['useClipboardItems']>
481
+ readonly useCloned: UnwrapRef<typeof import('@vueuse/core')['useCloned']>
482
+ readonly useColorMode: UnwrapRef<typeof import('@vueuse/core')['useColorMode']>
483
+ readonly useConfirmDialog: UnwrapRef<typeof import('@vueuse/core')['useConfirmDialog']>
484
+ readonly useCounter: UnwrapRef<typeof import('@vueuse/core')['useCounter']>
485
+ readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
486
+ readonly useCssVar: UnwrapRef<typeof import('@vueuse/core')['useCssVar']>
487
+ readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
488
+ readonly useCurrentElement: UnwrapRef<typeof import('@vueuse/core')['useCurrentElement']>
489
+ readonly useCycleList: UnwrapRef<typeof import('@vueuse/core')['useCycleList']>
490
+ readonly useDark: UnwrapRef<typeof import('@vueuse/core')['useDark']>
491
+ readonly useDateFormat: UnwrapRef<typeof import('@vueuse/core')['useDateFormat']>
492
+ readonly useDebounce: UnwrapRef<typeof import('@vueuse/core')['useDebounce']>
493
+ readonly useDebounceFn: UnwrapRef<typeof import('@vueuse/core')['useDebounceFn']>
494
+ readonly useDebouncedRefHistory: UnwrapRef<typeof import('@vueuse/core')['useDebouncedRefHistory']>
495
+ readonly useDeviceMotion: UnwrapRef<typeof import('@vueuse/core')['useDeviceMotion']>
496
+ readonly useDeviceOrientation: UnwrapRef<typeof import('@vueuse/core')['useDeviceOrientation']>
497
+ readonly useDevicePixelRatio: UnwrapRef<typeof import('@vueuse/core')['useDevicePixelRatio']>
498
+ readonly useDevicesList: UnwrapRef<typeof import('@vueuse/core')['useDevicesList']>
499
+ readonly useDisplayMedia: UnwrapRef<typeof import('@vueuse/core')['useDisplayMedia']>
500
+ readonly useDocumentVisibility: UnwrapRef<typeof import('@vueuse/core')['useDocumentVisibility']>
501
+ readonly useDraggable: UnwrapRef<typeof import('@vueuse/core')['useDraggable']>
502
+ readonly useDropZone: UnwrapRef<typeof import('@vueuse/core')['useDropZone']>
503
+ readonly useEcharts: UnwrapRef<typeof import('../src/composables/echarts')['useEcharts']>
504
+ readonly useElementBounding: UnwrapRef<typeof import('@vueuse/core')['useElementBounding']>
505
+ readonly useElementByPoint: UnwrapRef<typeof import('@vueuse/core')['useElementByPoint']>
506
+ readonly useElementHover: UnwrapRef<typeof import('@vueuse/core')['useElementHover']>
507
+ readonly useElementSize: UnwrapRef<typeof import('@vueuse/core')['useElementSize']>
508
+ readonly useElementVisibility: UnwrapRef<typeof import('@vueuse/core')['useElementVisibility']>
509
+ readonly useEventBus: UnwrapRef<typeof import('@vueuse/core')['useEventBus']>
510
+ readonly useEventListener: UnwrapRef<typeof import('@vueuse/core')['useEventListener']>
511
+ readonly useEventSource: UnwrapRef<typeof import('@vueuse/core')['useEventSource']>
512
+ readonly useEyeDropper: UnwrapRef<typeof import('@vueuse/core')['useEyeDropper']>
513
+ readonly useFavicon: UnwrapRef<typeof import('@vueuse/core')['useFavicon']>
514
+ readonly useFetch: UnwrapRef<typeof import('@vueuse/core')['useFetch']>
515
+ readonly useFileDialog: UnwrapRef<typeof import('@vueuse/core')['useFileDialog']>
516
+ readonly useFileSystemAccess: UnwrapRef<typeof import('@vueuse/core')['useFileSystemAccess']>
517
+ readonly useFocus: UnwrapRef<typeof import('@vueuse/core')['useFocus']>
518
+ readonly useFocusWithin: UnwrapRef<typeof import('@vueuse/core')['useFocusWithin']>
519
+ readonly useFps: UnwrapRef<typeof import('@vueuse/core')['useFps']>
520
+ readonly useFullscreen: UnwrapRef<typeof import('@vueuse/core')['useFullscreen']>
521
+ readonly useGamepad: UnwrapRef<typeof import('@vueuse/core')['useGamepad']>
522
+ readonly useGeolocation: UnwrapRef<typeof import('@vueuse/core')['useGeolocation']>
523
+ readonly useGet: UnwrapRef<typeof import('../src/apis/get')['useGet']>
524
+ readonly useIdle: UnwrapRef<typeof import('@vueuse/core')['useIdle']>
525
+ readonly useImage: UnwrapRef<typeof import('@vueuse/core')['useImage']>
526
+ readonly useInfiniteScroll: UnwrapRef<typeof import('@vueuse/core')['useInfiniteScroll']>
527
+ readonly useIntersectionObserver: UnwrapRef<typeof import('@vueuse/core')['useIntersectionObserver']>
528
+ readonly useInterval: UnwrapRef<typeof import('@vueuse/core')['useInterval']>
529
+ readonly useIntervalFn: UnwrapRef<typeof import('@vueuse/core')['useIntervalFn']>
530
+ readonly useKeyModifier: UnwrapRef<typeof import('@vueuse/core')['useKeyModifier']>
531
+ readonly useLastChanged: UnwrapRef<typeof import('@vueuse/core')['useLastChanged']>
532
+ readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
533
+ readonly useLoadData: UnwrapRef<typeof import('../src/composables/loadData')['useLoadData']>
534
+ readonly useLocalStorage: UnwrapRef<typeof import('@vueuse/core')['useLocalStorage']>
535
+ readonly useMagicKeys: UnwrapRef<typeof import('@vueuse/core')['useMagicKeys']>
536
+ readonly useManualRefHistory: UnwrapRef<typeof import('@vueuse/core')['useManualRefHistory']>
537
+ readonly useMediaControls: UnwrapRef<typeof import('@vueuse/core')['useMediaControls']>
538
+ readonly useMediaQuery: UnwrapRef<typeof import('@vueuse/core')['useMediaQuery']>
539
+ readonly useMemoize: UnwrapRef<typeof import('@vueuse/core')['useMemoize']>
540
+ readonly useMemory: UnwrapRef<typeof import('@vueuse/core')['useMemory']>
541
+ readonly useMounted: UnwrapRef<typeof import('@vueuse/core')['useMounted']>
542
+ readonly useMouse: UnwrapRef<typeof import('@vueuse/core')['useMouse']>
543
+ readonly useMouseInElement: UnwrapRef<typeof import('@vueuse/core')['useMouseInElement']>
544
+ readonly useMousePressed: UnwrapRef<typeof import('@vueuse/core')['useMousePressed']>
545
+ readonly useMutationObserver: UnwrapRef<typeof import('@vueuse/core')['useMutationObserver']>
546
+ readonly useNavigatorLanguage: UnwrapRef<typeof import('@vueuse/core')['useNavigatorLanguage']>
547
+ readonly useNetwork: UnwrapRef<typeof import('@vueuse/core')['useNetwork']>
548
+ readonly useNow: UnwrapRef<typeof import('@vueuse/core')['useNow']>
549
+ readonly useObjectUrl: UnwrapRef<typeof import('@vueuse/core')['useObjectUrl']>
550
+ readonly useOffsetPagination: UnwrapRef<typeof import('@vueuse/core')['useOffsetPagination']>
551
+ readonly useOnline: UnwrapRef<typeof import('@vueuse/core')['useOnline']>
552
+ readonly usePageLeave: UnwrapRef<typeof import('@vueuse/core')['usePageLeave']>
553
+ readonly useParallax: UnwrapRef<typeof import('@vueuse/core')['useParallax']>
554
+ readonly useParentElement: UnwrapRef<typeof import('@vueuse/core')['useParentElement']>
555
+ readonly usePerformanceObserver: UnwrapRef<typeof import('@vueuse/core')['usePerformanceObserver']>
556
+ readonly usePermission: UnwrapRef<typeof import('@vueuse/core')['usePermission']>
557
+ readonly usePointer: UnwrapRef<typeof import('@vueuse/core')['usePointer']>
558
+ readonly usePointerLock: UnwrapRef<typeof import('@vueuse/core')['usePointerLock']>
559
+ readonly usePointerSwipe: UnwrapRef<typeof import('@vueuse/core')['usePointerSwipe']>
560
+ readonly usePost: UnwrapRef<typeof import('../src/apis/post')['usePost']>
561
+ readonly usePreferredColorScheme: UnwrapRef<typeof import('@vueuse/core')['usePreferredColorScheme']>
562
+ readonly usePreferredContrast: UnwrapRef<typeof import('@vueuse/core')['usePreferredContrast']>
563
+ readonly usePreferredDark: UnwrapRef<typeof import('@vueuse/core')['usePreferredDark']>
564
+ readonly usePreferredLanguages: UnwrapRef<typeof import('@vueuse/core')['usePreferredLanguages']>
565
+ readonly usePreferredReducedMotion: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedMotion']>
566
+ readonly usePrevious: UnwrapRef<typeof import('@vueuse/core')['usePrevious']>
567
+ readonly useRafFn: UnwrapRef<typeof import('@vueuse/core')['useRafFn']>
568
+ readonly useRefHistory: UnwrapRef<typeof import('@vueuse/core')['useRefHistory']>
569
+ readonly useResizeObserver: UnwrapRef<typeof import('@vueuse/core')['useResizeObserver']>
570
+ readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
571
+ readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
572
+ readonly useScreenOrientation: UnwrapRef<typeof import('@vueuse/core')['useScreenOrientation']>
573
+ readonly useScreenSafeArea: UnwrapRef<typeof import('@vueuse/core')['useScreenSafeArea']>
574
+ readonly useScriptTag: UnwrapRef<typeof import('@vueuse/core')['useScriptTag']>
575
+ readonly useScroll: UnwrapRef<typeof import('@vueuse/core')['useScroll']>
576
+ readonly useScrollLock: UnwrapRef<typeof import('@vueuse/core')['useScrollLock']>
577
+ readonly useSessionStorage: UnwrapRef<typeof import('@vueuse/core')['useSessionStorage']>
578
+ readonly useShare: UnwrapRef<typeof import('@vueuse/core')['useShare']>
579
+ readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
580
+ readonly useSorted: UnwrapRef<typeof import('@vueuse/core')['useSorted']>
581
+ readonly useSpeechRecognition: UnwrapRef<typeof import('@vueuse/core')['useSpeechRecognition']>
582
+ readonly useSpeechSynthesis: UnwrapRef<typeof import('@vueuse/core')['useSpeechSynthesis']>
583
+ readonly useStepper: UnwrapRef<typeof import('@vueuse/core')['useStepper']>
584
+ readonly useStorage: UnwrapRef<typeof import('@vueuse/core')['useStorage']>
585
+ readonly useStorageAsync: UnwrapRef<typeof import('@vueuse/core')['useStorageAsync']>
586
+ readonly useStyleTag: UnwrapRef<typeof import('@vueuse/core')['useStyleTag']>
587
+ readonly useSupported: UnwrapRef<typeof import('@vueuse/core')['useSupported']>
588
+ readonly useSwipe: UnwrapRef<typeof import('@vueuse/core')['useSwipe']>
589
+ readonly useTemplateRefsList: UnwrapRef<typeof import('@vueuse/core')['useTemplateRefsList']>
590
+ readonly useTextDirection: UnwrapRef<typeof import('@vueuse/core')['useTextDirection']>
591
+ readonly useTextSelection: UnwrapRef<typeof import('@vueuse/core')['useTextSelection']>
592
+ readonly useTextareaAutosize: UnwrapRef<typeof import('@vueuse/core')['useTextareaAutosize']>
593
+ readonly useThrottle: UnwrapRef<typeof import('@vueuse/core')['useThrottle']>
594
+ readonly useThrottleFn: UnwrapRef<typeof import('@vueuse/core')['useThrottleFn']>
595
+ readonly useThrottledRefHistory: UnwrapRef<typeof import('@vueuse/core')['useThrottledRefHistory']>
596
+ readonly useTimeAgo: UnwrapRef<typeof import('@vueuse/core')['useTimeAgo']>
597
+ readonly useTimeout: UnwrapRef<typeof import('@vueuse/core')['useTimeout']>
598
+ readonly useTimeoutFn: UnwrapRef<typeof import('@vueuse/core')['useTimeoutFn']>
599
+ readonly useTimeoutPoll: UnwrapRef<typeof import('@vueuse/core')['useTimeoutPoll']>
600
+ readonly useTimestamp: UnwrapRef<typeof import('@vueuse/core')['useTimestamp']>
601
+ readonly useTitle: UnwrapRef<typeof import('@vueuse/core')['useTitle']>
602
+ readonly useToNumber: UnwrapRef<typeof import('@vueuse/core')['useToNumber']>
603
+ readonly useToString: UnwrapRef<typeof import('@vueuse/core')['useToString']>
604
+ readonly useToggle: UnwrapRef<typeof import('@vueuse/core')['useToggle']>
605
+ readonly useTransition: UnwrapRef<typeof import('@vueuse/core')['useTransition']>
606
+ readonly useUrlSearchParams: UnwrapRef<typeof import('@vueuse/core')['useUrlSearchParams']>
607
+ readonly useUserMedia: UnwrapRef<typeof import('@vueuse/core')['useUserMedia']>
608
+ readonly useVModel: UnwrapRef<typeof import('@vueuse/core')['useVModel']>
609
+ readonly useVModels: UnwrapRef<typeof import('@vueuse/core')['useVModels']>
610
+ readonly useVibrate: UnwrapRef<typeof import('@vueuse/core')['useVibrate']>
611
+ readonly useVirtualList: UnwrapRef<typeof import('@vueuse/core')['useVirtualList']>
612
+ readonly useWakeLock: UnwrapRef<typeof import('@vueuse/core')['useWakeLock']>
613
+ readonly useWebNotification: UnwrapRef<typeof import('@vueuse/core')['useWebNotification']>
614
+ readonly useWebSocket: UnwrapRef<typeof import('@vueuse/core')['useWebSocket']>
615
+ readonly useWebWorker: UnwrapRef<typeof import('@vueuse/core')['useWebWorker']>
616
+ readonly useWebWorkerFn: UnwrapRef<typeof import('@vueuse/core')['useWebWorkerFn']>
617
+ readonly useWindowFocus: UnwrapRef<typeof import('@vueuse/core')['useWindowFocus']>
618
+ readonly useWindowScroll: UnwrapRef<typeof import('@vueuse/core')['useWindowScroll']>
619
+ readonly useWindowSize: UnwrapRef<typeof import('@vueuse/core')['useWindowSize']>
620
+ readonly watch: UnwrapRef<typeof import('vue')['watch']>
621
+ readonly watchArray: UnwrapRef<typeof import('@vueuse/core')['watchArray']>
622
+ readonly watchAtMost: UnwrapRef<typeof import('@vueuse/core')['watchAtMost']>
623
+ readonly watchDebounced: UnwrapRef<typeof import('@vueuse/core')['watchDebounced']>
624
+ readonly watchDeep: UnwrapRef<typeof import('@vueuse/core')['watchDeep']>
625
+ readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
626
+ readonly watchIgnorable: UnwrapRef<typeof import('@vueuse/core')['watchIgnorable']>
627
+ readonly watchImmediate: UnwrapRef<typeof import('@vueuse/core')['watchImmediate']>
628
+ readonly watchOnce: UnwrapRef<typeof import('@vueuse/core')['watchOnce']>
629
+ readonly watchPausable: UnwrapRef<typeof import('@vueuse/core')['watchPausable']>
630
+ readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
631
+ readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
632
+ readonly watchThrottled: UnwrapRef<typeof import('@vueuse/core')['watchThrottled']>
633
+ readonly watchTriggerable: UnwrapRef<typeof import('@vueuse/core')['watchTriggerable']>
634
+ readonly watchWithFilter: UnwrapRef<typeof import('@vueuse/core')['watchWithFilter']>
635
+ readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
636
+ }
637
+ }
638
+ declare module '@vue/runtime-core' {
639
+ interface GlobalComponents {}
640
+ interface ComponentCustomProperties {
641
+ readonly Breakpoint: UnwrapRef<typeof import('../src/enums/breakpointEnum')['Breakpoint']>
642
+ readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
643
+ readonly acceptHMRUpdate: UnwrapRef<typeof import('pinia')['acceptHMRUpdate']>
644
+ readonly ajaxEndLoading: UnwrapRef<typeof import('../src/apis/index')['ajaxEndLoading']>
645
+ readonly ajaxStartLoading: UnwrapRef<typeof import('../src/apis/index')['ajaxStartLoading']>
646
+ readonly apis: UnwrapRef<typeof import('../src/apis/index')['apis']>
647
+ readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
648
+ readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
649
+ readonly computed: UnwrapRef<typeof import('vue')['computed']>
650
+ readonly computedAsync: UnwrapRef<typeof import('@vueuse/core')['computedAsync']>
651
+ readonly computedEager: UnwrapRef<typeof import('@vueuse/core')['computedEager']>
652
+ readonly computedInject: UnwrapRef<typeof import('@vueuse/core')['computedInject']>
653
+ readonly computedWithControl: UnwrapRef<typeof import('@vueuse/core')['computedWithControl']>
654
+ readonly config: UnwrapRef<typeof import('../src/components/YoungECharts/config')['default']>
655
+ readonly controlledComputed: UnwrapRef<typeof import('@vueuse/core')['controlledComputed']>
656
+ readonly controlledRef: UnwrapRef<typeof import('@vueuse/core')['controlledRef']>
657
+ readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
658
+ readonly createEventHook: UnwrapRef<typeof import('@vueuse/core')['createEventHook']>
659
+ readonly createGlobalState: UnwrapRef<typeof import('@vueuse/core')['createGlobalState']>
660
+ readonly createInjectionState: UnwrapRef<typeof import('@vueuse/core')['createInjectionState']>
661
+ readonly createPinia: UnwrapRef<typeof import('pinia')['createPinia']>
662
+ readonly createReactiveFn: UnwrapRef<typeof import('@vueuse/core')['createReactiveFn']>
663
+ readonly createReusableTemplate: UnwrapRef<typeof import('@vueuse/core')['createReusableTemplate']>
664
+ readonly createSharedComposable: UnwrapRef<typeof import('@vueuse/core')['createSharedComposable']>
665
+ readonly createTemplatePromise: UnwrapRef<typeof import('@vueuse/core')['createTemplatePromise']>
666
+ readonly createUnrefFn: UnwrapRef<typeof import('@vueuse/core')['createUnrefFn']>
667
+ readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
668
+ readonly debouncedRef: UnwrapRef<typeof import('@vueuse/core')['debouncedRef']>
669
+ readonly debouncedWatch: UnwrapRef<typeof import('@vueuse/core')['debouncedWatch']>
670
+ readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
671
+ readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
672
+ readonly defineStore: UnwrapRef<typeof import('pinia')['defineStore']>
673
+ readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
674
+ readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
675
+ readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
676
+ readonly getActivePinia: UnwrapRef<typeof import('pinia')['getActivePinia']>
677
+ readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
678
+ readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
679
+ readonly h: UnwrapRef<typeof import('vue')['h']>
680
+ readonly http: UnwrapRef<typeof import('../src/apis/index')['http']>
681
+ readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
682
+ readonly inject: UnwrapRef<typeof import('vue')['inject']>
683
+ readonly injectLocal: UnwrapRef<typeof import('@vueuse/core')['injectLocal']>
684
+ readonly isDark: UnwrapRef<typeof import('../src/composables/dark')['isDark']>
685
+ readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
686
+ readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
687
+ readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
688
+ readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
689
+ readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
690
+ readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
691
+ readonly mapActions: UnwrapRef<typeof import('pinia')['mapActions']>
692
+ readonly mapGetters: UnwrapRef<typeof import('pinia')['mapGetters']>
693
+ readonly mapState: UnwrapRef<typeof import('pinia')['mapState']>
694
+ readonly mapStores: UnwrapRef<typeof import('pinia')['mapStores']>
695
+ readonly mapWritableState: UnwrapRef<typeof import('pinia')['mapWritableState']>
696
+ readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
697
+ readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
698
+ readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
699
+ readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
700
+ readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
701
+ readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
702
+ readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
703
+ readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
704
+ readonly onClickOutside: UnwrapRef<typeof import('@vueuse/core')['onClickOutside']>
705
+ readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
706
+ readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
707
+ readonly onKeyStroke: UnwrapRef<typeof import('@vueuse/core')['onKeyStroke']>
708
+ readonly onLongPress: UnwrapRef<typeof import('@vueuse/core')['onLongPress']>
709
+ readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
710
+ readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
711
+ readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
712
+ readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
713
+ readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
714
+ readonly onStartTyping: UnwrapRef<typeof import('@vueuse/core')['onStartTyping']>
715
+ readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
716
+ readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
717
+ readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
718
+ readonly pinia: UnwrapRef<typeof import('../src/modules/pinia')['default']>
719
+ readonly preferredDark: UnwrapRef<typeof import('../src/composables/dark')['preferredDark']>
720
+ readonly provide: UnwrapRef<typeof import('vue')['provide']>
721
+ readonly provideLocal: UnwrapRef<typeof import('@vueuse/core')['provideLocal']>
722
+ readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
723
+ readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
724
+ readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
725
+ readonly reactiveComputed: UnwrapRef<typeof import('@vueuse/core')['reactiveComputed']>
726
+ readonly reactiveOmit: UnwrapRef<typeof import('@vueuse/core')['reactiveOmit']>
727
+ readonly reactivePick: UnwrapRef<typeof import('@vueuse/core')['reactivePick']>
728
+ readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
729
+ readonly ref: UnwrapRef<typeof import('vue')['ref']>
730
+ readonly refAutoReset: UnwrapRef<typeof import('@vueuse/core')['refAutoReset']>
731
+ readonly refDebounced: UnwrapRef<typeof import('@vueuse/core')['refDebounced']>
732
+ readonly refDefault: UnwrapRef<typeof import('@vueuse/core')['refDefault']>
733
+ readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
734
+ readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
735
+ readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
736
+ readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
737
+ readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
738
+ readonly router: UnwrapRef<typeof import('../src/modules/router')['default']>
739
+ readonly setActivePinia: UnwrapRef<typeof import('pinia')['setActivePinia']>
740
+ readonly setMapStoreSuffix: UnwrapRef<typeof import('pinia')['setMapStoreSuffix']>
741
+ readonly setupModules: UnwrapRef<typeof import('../src/modules/index')['setupModules']>
742
+ readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
743
+ readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
744
+ readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
745
+ readonly storeToRefs: UnwrapRef<typeof import('pinia')['storeToRefs']>
746
+ readonly syncRef: UnwrapRef<typeof import('@vueuse/core')['syncRef']>
747
+ readonly syncRefs: UnwrapRef<typeof import('@vueuse/core')['syncRefs']>
748
+ readonly templateRef: UnwrapRef<typeof import('@vueuse/core')['templateRef']>
749
+ readonly throttledRef: UnwrapRef<typeof import('@vueuse/core')['throttledRef']>
750
+ readonly throttledWatch: UnwrapRef<typeof import('@vueuse/core')['throttledWatch']>
751
+ readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
752
+ readonly toReactive: UnwrapRef<typeof import('@vueuse/core')['toReactive']>
753
+ readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
754
+ readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
755
+ readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
756
+ readonly toggleDark: UnwrapRef<typeof import('../src/composables/dark')['toggleDark']>
757
+ readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
758
+ readonly tryOnBeforeMount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeMount']>
759
+ readonly tryOnBeforeUnmount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeUnmount']>
760
+ readonly tryOnMounted: UnwrapRef<typeof import('@vueuse/core')['tryOnMounted']>
761
+ readonly tryOnScopeDispose: UnwrapRef<typeof import('@vueuse/core')['tryOnScopeDispose']>
762
+ readonly tryOnUnmounted: UnwrapRef<typeof import('@vueuse/core')['tryOnUnmounted']>
763
+ readonly unref: UnwrapRef<typeof import('vue')['unref']>
764
+ readonly unrefElement: UnwrapRef<typeof import('@vueuse/core')['unrefElement']>
765
+ readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
766
+ readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
767
+ readonly useAnimate: UnwrapRef<typeof import('@vueuse/core')['useAnimate']>
768
+ readonly useAppBreakpoint: UnwrapRef<typeof import('../src/composables/breakPoint')['useAppBreakpoint']>
769
+ readonly useArrayDifference: UnwrapRef<typeof import('@vueuse/core')['useArrayDifference']>
770
+ readonly useArrayEvery: UnwrapRef<typeof import('@vueuse/core')['useArrayEvery']>
771
+ readonly useArrayFilter: UnwrapRef<typeof import('@vueuse/core')['useArrayFilter']>
772
+ readonly useArrayFind: UnwrapRef<typeof import('@vueuse/core')['useArrayFind']>
773
+ readonly useArrayFindIndex: UnwrapRef<typeof import('@vueuse/core')['useArrayFindIndex']>
774
+ readonly useArrayFindLast: UnwrapRef<typeof import('@vueuse/core')['useArrayFindLast']>
775
+ readonly useArrayIncludes: UnwrapRef<typeof import('@vueuse/core')['useArrayIncludes']>
776
+ readonly useArrayJoin: UnwrapRef<typeof import('@vueuse/core')['useArrayJoin']>
777
+ readonly useArrayMap: UnwrapRef<typeof import('@vueuse/core')['useArrayMap']>
778
+ readonly useArrayReduce: UnwrapRef<typeof import('@vueuse/core')['useArrayReduce']>
779
+ readonly useArraySome: UnwrapRef<typeof import('@vueuse/core')['useArraySome']>
780
+ readonly useArrayUnique: UnwrapRef<typeof import('@vueuse/core')['useArrayUnique']>
781
+ readonly useAsyncQueue: UnwrapRef<typeof import('@vueuse/core')['useAsyncQueue']>
782
+ readonly useAsyncState: UnwrapRef<typeof import('@vueuse/core')['useAsyncState']>
783
+ readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
784
+ readonly useBase64: UnwrapRef<typeof import('@vueuse/core')['useBase64']>
785
+ readonly useBattery: UnwrapRef<typeof import('@vueuse/core')['useBattery']>
786
+ readonly useBluetooth: UnwrapRef<typeof import('@vueuse/core')['useBluetooth']>
787
+ readonly useBreakpoints: UnwrapRef<typeof import('@vueuse/core')['useBreakpoints']>
788
+ readonly useBroadcastChannel: UnwrapRef<typeof import('@vueuse/core')['useBroadcastChannel']>
789
+ readonly useBrowserLocation: UnwrapRef<typeof import('@vueuse/core')['useBrowserLocation']>
790
+ readonly useCached: UnwrapRef<typeof import('@vueuse/core')['useCached']>
791
+ readonly useClipboard: UnwrapRef<typeof import('@vueuse/core')['useClipboard']>
792
+ readonly useClipboardItems: UnwrapRef<typeof import('@vueuse/core')['useClipboardItems']>
793
+ readonly useCloned: UnwrapRef<typeof import('@vueuse/core')['useCloned']>
794
+ readonly useColorMode: UnwrapRef<typeof import('@vueuse/core')['useColorMode']>
795
+ readonly useConfirmDialog: UnwrapRef<typeof import('@vueuse/core')['useConfirmDialog']>
796
+ readonly useCounter: UnwrapRef<typeof import('@vueuse/core')['useCounter']>
797
+ readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
798
+ readonly useCssVar: UnwrapRef<typeof import('@vueuse/core')['useCssVar']>
799
+ readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
800
+ readonly useCurrentElement: UnwrapRef<typeof import('@vueuse/core')['useCurrentElement']>
801
+ readonly useCycleList: UnwrapRef<typeof import('@vueuse/core')['useCycleList']>
802
+ readonly useDark: UnwrapRef<typeof import('@vueuse/core')['useDark']>
803
+ readonly useDateFormat: UnwrapRef<typeof import('@vueuse/core')['useDateFormat']>
804
+ readonly useDebounce: UnwrapRef<typeof import('@vueuse/core')['useDebounce']>
805
+ readonly useDebounceFn: UnwrapRef<typeof import('@vueuse/core')['useDebounceFn']>
806
+ readonly useDebouncedRefHistory: UnwrapRef<typeof import('@vueuse/core')['useDebouncedRefHistory']>
807
+ readonly useDeviceMotion: UnwrapRef<typeof import('@vueuse/core')['useDeviceMotion']>
808
+ readonly useDeviceOrientation: UnwrapRef<typeof import('@vueuse/core')['useDeviceOrientation']>
809
+ readonly useDevicePixelRatio: UnwrapRef<typeof import('@vueuse/core')['useDevicePixelRatio']>
810
+ readonly useDevicesList: UnwrapRef<typeof import('@vueuse/core')['useDevicesList']>
811
+ readonly useDisplayMedia: UnwrapRef<typeof import('@vueuse/core')['useDisplayMedia']>
812
+ readonly useDocumentVisibility: UnwrapRef<typeof import('@vueuse/core')['useDocumentVisibility']>
813
+ readonly useDraggable: UnwrapRef<typeof import('@vueuse/core')['useDraggable']>
814
+ readonly useDropZone: UnwrapRef<typeof import('@vueuse/core')['useDropZone']>
815
+ readonly useEcharts: UnwrapRef<typeof import('../src/composables/echarts')['useEcharts']>
816
+ readonly useElementBounding: UnwrapRef<typeof import('@vueuse/core')['useElementBounding']>
817
+ readonly useElementByPoint: UnwrapRef<typeof import('@vueuse/core')['useElementByPoint']>
818
+ readonly useElementHover: UnwrapRef<typeof import('@vueuse/core')['useElementHover']>
819
+ readonly useElementSize: UnwrapRef<typeof import('@vueuse/core')['useElementSize']>
820
+ readonly useElementVisibility: UnwrapRef<typeof import('@vueuse/core')['useElementVisibility']>
821
+ readonly useEventBus: UnwrapRef<typeof import('@vueuse/core')['useEventBus']>
822
+ readonly useEventListener: UnwrapRef<typeof import('@vueuse/core')['useEventListener']>
823
+ readonly useEventSource: UnwrapRef<typeof import('@vueuse/core')['useEventSource']>
824
+ readonly useEyeDropper: UnwrapRef<typeof import('@vueuse/core')['useEyeDropper']>
825
+ readonly useFavicon: UnwrapRef<typeof import('@vueuse/core')['useFavicon']>
826
+ readonly useFetch: UnwrapRef<typeof import('@vueuse/core')['useFetch']>
827
+ readonly useFileDialog: UnwrapRef<typeof import('@vueuse/core')['useFileDialog']>
828
+ readonly useFileSystemAccess: UnwrapRef<typeof import('@vueuse/core')['useFileSystemAccess']>
829
+ readonly useFocus: UnwrapRef<typeof import('@vueuse/core')['useFocus']>
830
+ readonly useFocusWithin: UnwrapRef<typeof import('@vueuse/core')['useFocusWithin']>
831
+ readonly useFps: UnwrapRef<typeof import('@vueuse/core')['useFps']>
832
+ readonly useFullscreen: UnwrapRef<typeof import('@vueuse/core')['useFullscreen']>
833
+ readonly useGamepad: UnwrapRef<typeof import('@vueuse/core')['useGamepad']>
834
+ readonly useGeolocation: UnwrapRef<typeof import('@vueuse/core')['useGeolocation']>
835
+ readonly useGet: UnwrapRef<typeof import('../src/apis/get')['useGet']>
836
+ readonly useIdle: UnwrapRef<typeof import('@vueuse/core')['useIdle']>
837
+ readonly useImage: UnwrapRef<typeof import('@vueuse/core')['useImage']>
838
+ readonly useInfiniteScroll: UnwrapRef<typeof import('@vueuse/core')['useInfiniteScroll']>
839
+ readonly useIntersectionObserver: UnwrapRef<typeof import('@vueuse/core')['useIntersectionObserver']>
840
+ readonly useInterval: UnwrapRef<typeof import('@vueuse/core')['useInterval']>
841
+ readonly useIntervalFn: UnwrapRef<typeof import('@vueuse/core')['useIntervalFn']>
842
+ readonly useKeyModifier: UnwrapRef<typeof import('@vueuse/core')['useKeyModifier']>
843
+ readonly useLastChanged: UnwrapRef<typeof import('@vueuse/core')['useLastChanged']>
844
+ readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
845
+ readonly useLoadData: UnwrapRef<typeof import('../src/composables/loadData')['useLoadData']>
846
+ readonly useLocalStorage: UnwrapRef<typeof import('@vueuse/core')['useLocalStorage']>
847
+ readonly useMagicKeys: UnwrapRef<typeof import('@vueuse/core')['useMagicKeys']>
848
+ readonly useManualRefHistory: UnwrapRef<typeof import('@vueuse/core')['useManualRefHistory']>
849
+ readonly useMediaControls: UnwrapRef<typeof import('@vueuse/core')['useMediaControls']>
850
+ readonly useMediaQuery: UnwrapRef<typeof import('@vueuse/core')['useMediaQuery']>
851
+ readonly useMemoize: UnwrapRef<typeof import('@vueuse/core')['useMemoize']>
852
+ readonly useMemory: UnwrapRef<typeof import('@vueuse/core')['useMemory']>
853
+ readonly useMounted: UnwrapRef<typeof import('@vueuse/core')['useMounted']>
854
+ readonly useMouse: UnwrapRef<typeof import('@vueuse/core')['useMouse']>
855
+ readonly useMouseInElement: UnwrapRef<typeof import('@vueuse/core')['useMouseInElement']>
856
+ readonly useMousePressed: UnwrapRef<typeof import('@vueuse/core')['useMousePressed']>
857
+ readonly useMutationObserver: UnwrapRef<typeof import('@vueuse/core')['useMutationObserver']>
858
+ readonly useNavigatorLanguage: UnwrapRef<typeof import('@vueuse/core')['useNavigatorLanguage']>
859
+ readonly useNetwork: UnwrapRef<typeof import('@vueuse/core')['useNetwork']>
860
+ readonly useNow: UnwrapRef<typeof import('@vueuse/core')['useNow']>
861
+ readonly useObjectUrl: UnwrapRef<typeof import('@vueuse/core')['useObjectUrl']>
862
+ readonly useOffsetPagination: UnwrapRef<typeof import('@vueuse/core')['useOffsetPagination']>
863
+ readonly useOnline: UnwrapRef<typeof import('@vueuse/core')['useOnline']>
864
+ readonly usePageLeave: UnwrapRef<typeof import('@vueuse/core')['usePageLeave']>
865
+ readonly useParallax: UnwrapRef<typeof import('@vueuse/core')['useParallax']>
866
+ readonly useParentElement: UnwrapRef<typeof import('@vueuse/core')['useParentElement']>
867
+ readonly usePerformanceObserver: UnwrapRef<typeof import('@vueuse/core')['usePerformanceObserver']>
868
+ readonly usePermission: UnwrapRef<typeof import('@vueuse/core')['usePermission']>
869
+ readonly usePointer: UnwrapRef<typeof import('@vueuse/core')['usePointer']>
870
+ readonly usePointerLock: UnwrapRef<typeof import('@vueuse/core')['usePointerLock']>
871
+ readonly usePointerSwipe: UnwrapRef<typeof import('@vueuse/core')['usePointerSwipe']>
872
+ readonly usePost: UnwrapRef<typeof import('../src/apis/post')['usePost']>
873
+ readonly usePreferredColorScheme: UnwrapRef<typeof import('@vueuse/core')['usePreferredColorScheme']>
874
+ readonly usePreferredContrast: UnwrapRef<typeof import('@vueuse/core')['usePreferredContrast']>
875
+ readonly usePreferredDark: UnwrapRef<typeof import('@vueuse/core')['usePreferredDark']>
876
+ readonly usePreferredLanguages: UnwrapRef<typeof import('@vueuse/core')['usePreferredLanguages']>
877
+ readonly usePreferredReducedMotion: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedMotion']>
878
+ readonly usePrevious: UnwrapRef<typeof import('@vueuse/core')['usePrevious']>
879
+ readonly useRafFn: UnwrapRef<typeof import('@vueuse/core')['useRafFn']>
880
+ readonly useRefHistory: UnwrapRef<typeof import('@vueuse/core')['useRefHistory']>
881
+ readonly useResizeObserver: UnwrapRef<typeof import('@vueuse/core')['useResizeObserver']>
882
+ readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
883
+ readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
884
+ readonly useScreenOrientation: UnwrapRef<typeof import('@vueuse/core')['useScreenOrientation']>
885
+ readonly useScreenSafeArea: UnwrapRef<typeof import('@vueuse/core')['useScreenSafeArea']>
886
+ readonly useScriptTag: UnwrapRef<typeof import('@vueuse/core')['useScriptTag']>
887
+ readonly useScroll: UnwrapRef<typeof import('@vueuse/core')['useScroll']>
888
+ readonly useScrollLock: UnwrapRef<typeof import('@vueuse/core')['useScrollLock']>
889
+ readonly useSessionStorage: UnwrapRef<typeof import('@vueuse/core')['useSessionStorage']>
890
+ readonly useShare: UnwrapRef<typeof import('@vueuse/core')['useShare']>
891
+ readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
892
+ readonly useSorted: UnwrapRef<typeof import('@vueuse/core')['useSorted']>
893
+ readonly useSpeechRecognition: UnwrapRef<typeof import('@vueuse/core')['useSpeechRecognition']>
894
+ readonly useSpeechSynthesis: UnwrapRef<typeof import('@vueuse/core')['useSpeechSynthesis']>
895
+ readonly useStepper: UnwrapRef<typeof import('@vueuse/core')['useStepper']>
896
+ readonly useStorage: UnwrapRef<typeof import('@vueuse/core')['useStorage']>
897
+ readonly useStorageAsync: UnwrapRef<typeof import('@vueuse/core')['useStorageAsync']>
898
+ readonly useStyleTag: UnwrapRef<typeof import('@vueuse/core')['useStyleTag']>
899
+ readonly useSupported: UnwrapRef<typeof import('@vueuse/core')['useSupported']>
900
+ readonly useSwipe: UnwrapRef<typeof import('@vueuse/core')['useSwipe']>
901
+ readonly useTemplateRefsList: UnwrapRef<typeof import('@vueuse/core')['useTemplateRefsList']>
902
+ readonly useTextDirection: UnwrapRef<typeof import('@vueuse/core')['useTextDirection']>
903
+ readonly useTextSelection: UnwrapRef<typeof import('@vueuse/core')['useTextSelection']>
904
+ readonly useTextareaAutosize: UnwrapRef<typeof import('@vueuse/core')['useTextareaAutosize']>
905
+ readonly useThrottle: UnwrapRef<typeof import('@vueuse/core')['useThrottle']>
906
+ readonly useThrottleFn: UnwrapRef<typeof import('@vueuse/core')['useThrottleFn']>
907
+ readonly useThrottledRefHistory: UnwrapRef<typeof import('@vueuse/core')['useThrottledRefHistory']>
908
+ readonly useTimeAgo: UnwrapRef<typeof import('@vueuse/core')['useTimeAgo']>
909
+ readonly useTimeout: UnwrapRef<typeof import('@vueuse/core')['useTimeout']>
910
+ readonly useTimeoutFn: UnwrapRef<typeof import('@vueuse/core')['useTimeoutFn']>
911
+ readonly useTimeoutPoll: UnwrapRef<typeof import('@vueuse/core')['useTimeoutPoll']>
912
+ readonly useTimestamp: UnwrapRef<typeof import('@vueuse/core')['useTimestamp']>
913
+ readonly useTitle: UnwrapRef<typeof import('@vueuse/core')['useTitle']>
914
+ readonly useToNumber: UnwrapRef<typeof import('@vueuse/core')['useToNumber']>
915
+ readonly useToString: UnwrapRef<typeof import('@vueuse/core')['useToString']>
916
+ readonly useToggle: UnwrapRef<typeof import('@vueuse/core')['useToggle']>
917
+ readonly useTransition: UnwrapRef<typeof import('@vueuse/core')['useTransition']>
918
+ readonly useUrlSearchParams: UnwrapRef<typeof import('@vueuse/core')['useUrlSearchParams']>
919
+ readonly useUserMedia: UnwrapRef<typeof import('@vueuse/core')['useUserMedia']>
920
+ readonly useVModel: UnwrapRef<typeof import('@vueuse/core')['useVModel']>
921
+ readonly useVModels: UnwrapRef<typeof import('@vueuse/core')['useVModels']>
922
+ readonly useVibrate: UnwrapRef<typeof import('@vueuse/core')['useVibrate']>
923
+ readonly useVirtualList: UnwrapRef<typeof import('@vueuse/core')['useVirtualList']>
924
+ readonly useWakeLock: UnwrapRef<typeof import('@vueuse/core')['useWakeLock']>
925
+ readonly useWebNotification: UnwrapRef<typeof import('@vueuse/core')['useWebNotification']>
926
+ readonly useWebSocket: UnwrapRef<typeof import('@vueuse/core')['useWebSocket']>
927
+ readonly useWebWorker: UnwrapRef<typeof import('@vueuse/core')['useWebWorker']>
928
+ readonly useWebWorkerFn: UnwrapRef<typeof import('@vueuse/core')['useWebWorkerFn']>
929
+ readonly useWindowFocus: UnwrapRef<typeof import('@vueuse/core')['useWindowFocus']>
930
+ readonly useWindowScroll: UnwrapRef<typeof import('@vueuse/core')['useWindowScroll']>
931
+ readonly useWindowSize: UnwrapRef<typeof import('@vueuse/core')['useWindowSize']>
932
+ readonly watch: UnwrapRef<typeof import('vue')['watch']>
933
+ readonly watchArray: UnwrapRef<typeof import('@vueuse/core')['watchArray']>
934
+ readonly watchAtMost: UnwrapRef<typeof import('@vueuse/core')['watchAtMost']>
935
+ readonly watchDebounced: UnwrapRef<typeof import('@vueuse/core')['watchDebounced']>
936
+ readonly watchDeep: UnwrapRef<typeof import('@vueuse/core')['watchDeep']>
937
+ readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
938
+ readonly watchIgnorable: UnwrapRef<typeof import('@vueuse/core')['watchIgnorable']>
939
+ readonly watchImmediate: UnwrapRef<typeof import('@vueuse/core')['watchImmediate']>
940
+ readonly watchOnce: UnwrapRef<typeof import('@vueuse/core')['watchOnce']>
941
+ readonly watchPausable: UnwrapRef<typeof import('@vueuse/core')['watchPausable']>
942
+ readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
943
+ readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
944
+ readonly watchThrottled: UnwrapRef<typeof import('@vueuse/core')['watchThrottled']>
945
+ readonly watchTriggerable: UnwrapRef<typeof import('@vueuse/core')['watchTriggerable']>
946
+ readonly watchWithFilter: UnwrapRef<typeof import('@vueuse/core')['watchWithFilter']>
947
+ readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
948
+ }
949
+ }