auto-imports.d.ts 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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 EffectScope: typeof import('vue')['EffectScope']
  9. const acceptHMRUpdate: typeof import('pinia')['acceptHMRUpdate']
  10. const computed: typeof import('vue')['computed']
  11. const createApp: typeof import('vue')['createApp']
  12. const createPinia: typeof import('pinia')['createPinia']
  13. const customRef: typeof import('vue')['customRef']
  14. const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
  15. const defineComponent: typeof import('vue')['defineComponent']
  16. const defineStore: typeof import('pinia')['defineStore']
  17. const effectScope: typeof import('vue')['effectScope']
  18. const getActivePinia: typeof import('pinia')['getActivePinia']
  19. const getAssetsImageUrl: typeof import('../../../@/utils/file/image')['getAssetsImageUrl']
  20. const getCurrentInstance: typeof import('vue')['getCurrentInstance']
  21. const getCurrentScope: typeof import('vue')['getCurrentScope']
  22. const getImageUrl: typeof import('../../../../@/utils/file/image')['getImageUrl']
  23. const getRelativeImageUrl: typeof import('../../../@/utils/file/image')['getRelativeImageUrl']
  24. const h: typeof import('vue')['h']
  25. const inject: typeof import('vue')['inject']
  26. const isProxy: typeof import('vue')['isProxy']
  27. const isReactive: typeof import('vue')['isReactive']
  28. const isReadonly: typeof import('vue')['isReadonly']
  29. const isRef: typeof import('vue')['isRef']
  30. const mapActions: typeof import('pinia')['mapActions']
  31. const mapGetters: typeof import('pinia')['mapGetters']
  32. const mapState: typeof import('pinia')['mapState']
  33. const mapStores: typeof import('pinia')['mapStores']
  34. const mapWritableState: typeof import('pinia')['mapWritableState']
  35. const markRaw: typeof import('vue')['markRaw']
  36. const nextTick: typeof import('vue')['nextTick']
  37. const onActivated: typeof import('vue')['onActivated']
  38. const onBeforeMount: typeof import('vue')['onBeforeMount']
  39. const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave']
  40. const onBeforeRouteUpdate: typeof import('vue-router')['onBeforeRouteUpdate']
  41. const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
  42. const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
  43. const onDeactivated: typeof import('vue')['onDeactivated']
  44. const onErrorCaptured: typeof import('vue')['onErrorCaptured']
  45. const onMounted: typeof import('vue')['onMounted']
  46. const onRenderTracked: typeof import('vue')['onRenderTracked']
  47. const onRenderTriggered: typeof import('vue')['onRenderTriggered']
  48. const onScopeDispose: typeof import('vue')['onScopeDispose']
  49. const onServerPrefetch: typeof import('vue')['onServerPrefetch']
  50. const onUnmounted: typeof import('vue')['onUnmounted']
  51. const onUpdated: typeof import('vue')['onUpdated']
  52. const provide: typeof import('vue')['provide']
  53. const reactive: typeof import('vue')['reactive']
  54. const readonly: typeof import('vue')['readonly']
  55. const ref: typeof import('vue')['ref']
  56. const resolveComponent: typeof import('vue')['resolveComponent']
  57. const setActivePinia: typeof import('pinia')['setActivePinia']
  58. const setMapStoreSuffix: typeof import('pinia')['setMapStoreSuffix']
  59. const shallowReactive: typeof import('vue')['shallowReactive']
  60. const shallowReadonly: typeof import('vue')['shallowReadonly']
  61. const shallowRef: typeof import('vue')['shallowRef']
  62. const storeToRefs: typeof import('pinia')['storeToRefs']
  63. const toRaw: typeof import('vue')['toRaw']
  64. const toRef: typeof import('vue')['toRef']
  65. const toRefs: typeof import('vue')['toRefs']
  66. const toValue: typeof import('vue')['toValue']
  67. const triggerRef: typeof import('vue')['triggerRef']
  68. const unref: typeof import('vue')['unref']
  69. const useAttrs: typeof import('vue')['useAttrs']
  70. const useCssModule: typeof import('vue')['useCssModule']
  71. const useCssVars: typeof import('vue')['useCssVars']
  72. const useLink: typeof import('vue-router')['useLink']
  73. const useMessage: typeof import('../../../@/hooks/web/useMessage')['useMessage']
  74. const useRoute: typeof import('vue-router')['useRoute']
  75. const useRouter: typeof import('vue-router')['useRouter']
  76. const useSlots: typeof import('vue')['useSlots']
  77. const watch: typeof import('vue')['watch']
  78. const watchEffect: typeof import('vue')['watchEffect']
  79. const watchPostEffect: typeof import('vue')['watchPostEffect']
  80. const watchSyncEffect: typeof import('vue')['watchSyncEffect']
  81. }
  82. // for type re-export
  83. declare global {
  84. // @ts-ignore
  85. export type {
  86. Component,
  87. ComponentPublicInstance,
  88. ComputedRef,
  89. ExtractDefaultPropTypes,
  90. ExtractPropTypes,
  91. ExtractPublicPropTypes,
  92. InjectionKey,
  93. PropType,
  94. Ref,
  95. VNode,
  96. WritableComputedRef
  97. } from 'vue'
  98. import('vue')
  99. }
  100. // for vue template auto import
  101. import { UnwrapRef } from 'vue'
  102. declare module 'vue' {
  103. interface ComponentCustomProperties {
  104. readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
  105. readonly acceptHMRUpdate: UnwrapRef<typeof import('pinia')['acceptHMRUpdate']>
  106. readonly computed: UnwrapRef<typeof import('vue')['computed']>
  107. readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
  108. readonly createPinia: UnwrapRef<typeof import('pinia')['createPinia']>
  109. readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
  110. readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
  111. readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
  112. readonly defineStore: UnwrapRef<typeof import('pinia')['defineStore']>
  113. readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
  114. readonly getActivePinia: UnwrapRef<typeof import('pinia')['getActivePinia']>
  115. readonly getAssetsImageUrl: UnwrapRef<typeof import('../../../@/utils/file/image')['getAssetsImageUrl']>
  116. readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
  117. readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
  118. readonly getRelativeImageUrl: UnwrapRef<typeof import('../../../@/utils/file/image')['getRelativeImageUrl']>
  119. readonly h: UnwrapRef<typeof import('vue')['h']>
  120. readonly inject: UnwrapRef<typeof import('vue')['inject']>
  121. readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
  122. readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
  123. readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
  124. readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
  125. readonly mapActions: UnwrapRef<typeof import('pinia')['mapActions']>
  126. readonly mapGetters: UnwrapRef<typeof import('pinia')['mapGetters']>
  127. readonly mapState: UnwrapRef<typeof import('pinia')['mapState']>
  128. readonly mapStores: UnwrapRef<typeof import('pinia')['mapStores']>
  129. readonly mapWritableState: UnwrapRef<typeof import('pinia')['mapWritableState']>
  130. readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
  131. readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
  132. readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
  133. readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
  134. readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
  135. readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
  136. readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
  137. readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
  138. readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
  139. readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
  140. readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
  141. readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
  142. readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
  143. readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
  144. readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
  145. readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
  146. readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
  147. readonly provide: UnwrapRef<typeof import('vue')['provide']>
  148. readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
  149. readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
  150. readonly ref: UnwrapRef<typeof import('vue')['ref']>
  151. readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
  152. readonly setActivePinia: UnwrapRef<typeof import('pinia')['setActivePinia']>
  153. readonly setMapStoreSuffix: UnwrapRef<typeof import('pinia')['setMapStoreSuffix']>
  154. readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
  155. readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
  156. readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
  157. readonly storeToRefs: UnwrapRef<typeof import('pinia')['storeToRefs']>
  158. readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
  159. readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
  160. readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
  161. readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
  162. readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
  163. readonly unref: UnwrapRef<typeof import('vue')['unref']>
  164. readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
  165. readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
  166. readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
  167. readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
  168. readonly useMessage: UnwrapRef<typeof import('../../../@/hooks/web/useMessage')['useMessage']>
  169. readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
  170. readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
  171. readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
  172. readonly watch: UnwrapRef<typeof import('vue')['watch']>
  173. readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
  174. readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
  175. readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
  176. }
  177. }
  178. declare module '@vue/runtime-core' {
  179. interface ComponentCustomProperties {
  180. readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
  181. readonly acceptHMRUpdate: UnwrapRef<typeof import('pinia')['acceptHMRUpdate']>
  182. readonly computed: UnwrapRef<typeof import('vue')['computed']>
  183. readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
  184. readonly createPinia: UnwrapRef<typeof import('pinia')['createPinia']>
  185. readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
  186. readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
  187. readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
  188. readonly defineStore: UnwrapRef<typeof import('pinia')['defineStore']>
  189. readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
  190. readonly getActivePinia: UnwrapRef<typeof import('pinia')['getActivePinia']>
  191. readonly getAssetsImageUrl: UnwrapRef<typeof import('../../../@/utils/file/image')['getAssetsImageUrl']>
  192. readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
  193. readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
  194. readonly getRelativeImageUrl: UnwrapRef<typeof import('../../../@/utils/file/image')['getRelativeImageUrl']>
  195. readonly h: UnwrapRef<typeof import('vue')['h']>
  196. readonly inject: UnwrapRef<typeof import('vue')['inject']>
  197. readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
  198. readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
  199. readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
  200. readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
  201. readonly mapActions: UnwrapRef<typeof import('pinia')['mapActions']>
  202. readonly mapGetters: UnwrapRef<typeof import('pinia')['mapGetters']>
  203. readonly mapState: UnwrapRef<typeof import('pinia')['mapState']>
  204. readonly mapStores: UnwrapRef<typeof import('pinia')['mapStores']>
  205. readonly mapWritableState: UnwrapRef<typeof import('pinia')['mapWritableState']>
  206. readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
  207. readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
  208. readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
  209. readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
  210. readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
  211. readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
  212. readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
  213. readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
  214. readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
  215. readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
  216. readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
  217. readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
  218. readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
  219. readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
  220. readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
  221. readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
  222. readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
  223. readonly provide: UnwrapRef<typeof import('vue')['provide']>
  224. readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
  225. readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
  226. readonly ref: UnwrapRef<typeof import('vue')['ref']>
  227. readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
  228. readonly setActivePinia: UnwrapRef<typeof import('pinia')['setActivePinia']>
  229. readonly setMapStoreSuffix: UnwrapRef<typeof import('pinia')['setMapStoreSuffix']>
  230. readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
  231. readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
  232. readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
  233. readonly storeToRefs: UnwrapRef<typeof import('pinia')['storeToRefs']>
  234. readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
  235. readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
  236. readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
  237. readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
  238. readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
  239. readonly unref: UnwrapRef<typeof import('vue')['unref']>
  240. readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
  241. readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
  242. readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
  243. readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
  244. readonly useMessage: UnwrapRef<typeof import('../../../@/hooks/web/useMessage')['useMessage']>
  245. readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
  246. readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
  247. readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
  248. readonly watch: UnwrapRef<typeof import('vue')['watch']>
  249. readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
  250. readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
  251. readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
  252. }
  253. }