auto-imports.d.ts 15 KB

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