auto-imports.d.ts 15 KB

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