auto-imports.d.ts 15 KB

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