components.d.ts 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. import type { DefineComponent, SlotsType } from 'vue'
  2. type IslandComponent<T extends DefineComponent> = T & DefineComponent<{}, {refresh: () => Promise<void>}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, SlotsType<{ fallback: { error: unknown } }>>
  3. interface _GlobalComponents {
  4. 'NuxtWelcome': typeof import("../node_modules/nuxt/dist/app/components/welcome.vue")['default']
  5. 'NuxtLayout': typeof import("../node_modules/nuxt/dist/app/components/nuxt-layout")['default']
  6. 'NuxtErrorBoundary': typeof import("../node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
  7. 'ClientOnly': typeof import("../node_modules/nuxt/dist/app/components/client-only")['default']
  8. 'DevOnly': typeof import("../node_modules/nuxt/dist/app/components/dev-only")['default']
  9. 'ServerPlaceholder': typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']
  10. 'NuxtLink': typeof import("../node_modules/nuxt/dist/app/components/nuxt-link")['default']
  11. 'NuxtLoadingIndicator': typeof import("../node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
  12. 'NuxtRouteAnnouncer': typeof import("../node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
  13. 'NuxtImg': typeof import("../node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
  14. 'NuxtPicture': typeof import("../node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
  15. 'NuxtPage': typeof import("../node_modules/nuxt/dist/pages/runtime/page")['default']
  16. 'NoScript': typeof import("../node_modules/nuxt/dist/head/runtime/components")['NoScript']
  17. 'Link': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Link']
  18. 'Base': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Base']
  19. 'Title': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Title']
  20. 'Meta': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Meta']
  21. 'Style': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Style']
  22. 'Head': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Head']
  23. 'Html': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Html']
  24. 'Body': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Body']
  25. 'NuxtIsland': typeof import("../node_modules/nuxt/dist/app/components/nuxt-island")['default']
  26. 'NuxtRouteAnnouncer': IslandComponent<typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']>
  27. 'LazyNuxtWelcome': typeof import("../node_modules/nuxt/dist/app/components/welcome.vue")['default']
  28. 'LazyNuxtLayout': typeof import("../node_modules/nuxt/dist/app/components/nuxt-layout")['default']
  29. 'LazyNuxtErrorBoundary': typeof import("../node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
  30. 'LazyClientOnly': typeof import("../node_modules/nuxt/dist/app/components/client-only")['default']
  31. 'LazyDevOnly': typeof import("../node_modules/nuxt/dist/app/components/dev-only")['default']
  32. 'LazyServerPlaceholder': typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']
  33. 'LazyNuxtLink': typeof import("../node_modules/nuxt/dist/app/components/nuxt-link")['default']
  34. 'LazyNuxtLoadingIndicator': typeof import("../node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
  35. 'LazyNuxtRouteAnnouncer': typeof import("../node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
  36. 'LazyNuxtImg': typeof import("../node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
  37. 'LazyNuxtPicture': typeof import("../node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
  38. 'LazyNuxtPage': typeof import("../node_modules/nuxt/dist/pages/runtime/page")['default']
  39. 'LazyNoScript': typeof import("../node_modules/nuxt/dist/head/runtime/components")['NoScript']
  40. 'LazyLink': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Link']
  41. 'LazyBase': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Base']
  42. 'LazyTitle': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Title']
  43. 'LazyMeta': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Meta']
  44. 'LazyStyle': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Style']
  45. 'LazyHead': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Head']
  46. 'LazyHtml': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Html']
  47. 'LazyBody': typeof import("../node_modules/nuxt/dist/head/runtime/components")['Body']
  48. 'LazyNuxtIsland': typeof import("../node_modules/nuxt/dist/app/components/nuxt-island")['default']
  49. 'LazyNuxtRouteAnnouncer': IslandComponent<typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']>
  50. }
  51. declare module 'vue' {
  52. export interface GlobalComponents extends _GlobalComponents { }
  53. }
  54. export const NuxtWelcome: typeof import("../node_modules/nuxt/dist/app/components/welcome.vue")['default']
  55. export const NuxtLayout: typeof import("../node_modules/nuxt/dist/app/components/nuxt-layout")['default']
  56. export const NuxtErrorBoundary: typeof import("../node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
  57. export const ClientOnly: typeof import("../node_modules/nuxt/dist/app/components/client-only")['default']
  58. export const DevOnly: typeof import("../node_modules/nuxt/dist/app/components/dev-only")['default']
  59. export const ServerPlaceholder: typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']
  60. export const NuxtLink: typeof import("../node_modules/nuxt/dist/app/components/nuxt-link")['default']
  61. export const NuxtLoadingIndicator: typeof import("../node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
  62. export const NuxtRouteAnnouncer: typeof import("../node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
  63. export const NuxtImg: typeof import("../node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
  64. export const NuxtPicture: typeof import("../node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
  65. export const NuxtPage: typeof import("../node_modules/nuxt/dist/pages/runtime/page")['default']
  66. export const NoScript: typeof import("../node_modules/nuxt/dist/head/runtime/components")['NoScript']
  67. export const Link: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Link']
  68. export const Base: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Base']
  69. export const Title: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Title']
  70. export const Meta: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Meta']
  71. export const Style: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Style']
  72. export const Head: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Head']
  73. export const Html: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Html']
  74. export const Body: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Body']
  75. export const NuxtIsland: typeof import("../node_modules/nuxt/dist/app/components/nuxt-island")['default']
  76. export const NuxtRouteAnnouncer: IslandComponent<typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']>
  77. export const LazyNuxtWelcome: typeof import("../node_modules/nuxt/dist/app/components/welcome.vue")['default']
  78. export const LazyNuxtLayout: typeof import("../node_modules/nuxt/dist/app/components/nuxt-layout")['default']
  79. export const LazyNuxtErrorBoundary: typeof import("../node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
  80. export const LazyClientOnly: typeof import("../node_modules/nuxt/dist/app/components/client-only")['default']
  81. export const LazyDevOnly: typeof import("../node_modules/nuxt/dist/app/components/dev-only")['default']
  82. export const LazyServerPlaceholder: typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']
  83. export const LazyNuxtLink: typeof import("../node_modules/nuxt/dist/app/components/nuxt-link")['default']
  84. export const LazyNuxtLoadingIndicator: typeof import("../node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
  85. export const LazyNuxtRouteAnnouncer: typeof import("../node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
  86. export const LazyNuxtImg: typeof import("../node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
  87. export const LazyNuxtPicture: typeof import("../node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
  88. export const LazyNuxtPage: typeof import("../node_modules/nuxt/dist/pages/runtime/page")['default']
  89. export const LazyNoScript: typeof import("../node_modules/nuxt/dist/head/runtime/components")['NoScript']
  90. export const LazyLink: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Link']
  91. export const LazyBase: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Base']
  92. export const LazyTitle: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Title']
  93. export const LazyMeta: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Meta']
  94. export const LazyStyle: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Style']
  95. export const LazyHead: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Head']
  96. export const LazyHtml: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Html']
  97. export const LazyBody: typeof import("../node_modules/nuxt/dist/head/runtime/components")['Body']
  98. export const LazyNuxtIsland: typeof import("../node_modules/nuxt/dist/app/components/nuxt-island")['default']
  99. export const LazyNuxtRouteAnnouncer: IslandComponent<typeof import("../node_modules/nuxt/dist/app/components/server-placeholder")['default']>
  100. export const componentNames: string[]