@coze-arch/cli 0.0.1-alpha.e9ff73 → 0.0.1-alpha.eaa612

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. package/lib/__templates__/expo/client/components/Screen.tsx +2 -2
  2. package/lib/__templates__/expo/client/eslint.config.mjs +4 -0
  3. package/lib/__templates__/expo/client/scripts/install-missing-deps.js +10 -10
  4. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
  5. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
  6. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
  7. package/lib/__templates__/nextjs/README.md +5 -0
  8. package/lib/__templates__/nextjs/_gitignore +0 -3
  9. package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
  10. package/lib/__templates__/nextjs/next.config.ts +1 -2
  11. package/lib/__templates__/nextjs/package.json +1 -5
  12. package/lib/__templates__/nextjs/pnpm-lock.yaml +1012 -12
  13. package/lib/__templates__/nextjs/scripts/build.sh +2 -2
  14. package/lib/__templates__/nextjs/scripts/dev.sh +3 -4
  15. package/lib/__templates__/nextjs/scripts/start.sh +3 -3
  16. package/lib/__templates__/nextjs/src/app/layout.tsx +1 -1
  17. package/lib/__templates__/nextjs/{server.ts → src/server.ts} +14 -14
  18. package/lib/__templates__/nextjs/tsconfig.json +1 -1
  19. package/lib/__templates__/nuxt-app/README.md +5 -15
  20. package/lib/__templates__/nuxt-app/app/app.vue +1 -188
  21. package/lib/__templates__/nuxt-app/app/pages/index.vue +23 -0
  22. package/lib/__templates__/nuxt-app/assets/css/main.css +24 -0
  23. package/lib/__templates__/nuxt-app/nuxt.config.ts +63 -3
  24. package/lib/__templates__/nuxt-app/package.json +7 -0
  25. package/lib/__templates__/nuxt-app/pnpm-lock.yaml +1610 -53
  26. package/lib/__templates__/nuxt-app/postcss.config.mjs +8 -0
  27. package/lib/__templates__/nuxt-app/scripts/dev.sh +2 -3
  28. package/lib/__templates__/nuxt-app/scripts/start.sh +3 -3
  29. package/lib/__templates__/nuxt-app/server/api/hello.ts +10 -0
  30. package/lib/__templates__/nuxt-app/server/middleware/logger.ts +10 -0
  31. package/lib/__templates__/nuxt-app/server/routes/health.ts +10 -0
  32. package/lib/__templates__/nuxt-app/tailwind.config.js +13 -0
  33. package/lib/__templates__/nuxt-app/template.config.js +9 -0
  34. package/lib/__templates__/templates.json +7 -0
  35. package/lib/__templates__/vite/README.md +189 -11
  36. package/lib/__templates__/vite/_gitignore +1 -0
  37. package/lib/__templates__/vite/eslint.config.mjs +6 -1
  38. package/lib/__templates__/vite/package.json +15 -3
  39. package/lib/__templates__/vite/pnpm-lock.yaml +750 -15
  40. package/lib/__templates__/vite/scripts/build-server.js +70 -0
  41. package/lib/__templates__/vite/scripts/build.sh +4 -1
  42. package/lib/__templates__/vite/scripts/dev.sh +4 -4
  43. package/lib/__templates__/vite/scripts/start.sh +5 -5
  44. package/lib/__templates__/vite/server/index.ts +57 -0
  45. package/lib/__templates__/vite/server/routes/index.ts +31 -0
  46. package/lib/__templates__/vite/server/vite.ts +79 -0
  47. package/lib/__templates__/vite/tsconfig.json +4 -3
  48. package/lib/cli.js +89 -100
  49. package/package.json +4 -1
  50. package/lib/__templates__/nuxt-app/.nuxt/app.config.mjs +0 -21
  51. package/lib/__templates__/nuxt-app/.nuxt/components.d.ts +0 -64
  52. package/lib/__templates__/nuxt-app/.nuxt/imports.d.ts +0 -31
  53. package/lib/__templates__/nuxt-app/.nuxt/manifest/meta/f97812ec-f25e-427b-b45d-eab58fba39f9.json +0 -1
  54. package/lib/__templates__/nuxt-app/.nuxt/nuxt.d.ts +0 -19
  55. package/lib/__templates__/nuxt-app/.nuxt/nuxt.node.d.ts +0 -14
  56. package/lib/__templates__/nuxt-app/.nuxt/nuxt.shared.d.ts +0 -6
  57. package/lib/__templates__/nuxt-app/.nuxt/schema/nuxt.schema.d.ts +0 -17
  58. package/lib/__templates__/nuxt-app/.nuxt/schema/nuxt.schema.json +0 -3
  59. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.app.json +0 -201
  60. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.json +0 -203
  61. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.node.json +0 -110
  62. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.server.json +0 -140
  63. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.shared.json +0 -152
  64. package/lib/__templates__/nuxt-app/.nuxt/types/app.config.d.ts +0 -35
  65. package/lib/__templates__/nuxt-app/.nuxt/types/build.d.ts +0 -24
  66. package/lib/__templates__/nuxt-app/.nuxt/types/builder-env.d.ts +0 -1
  67. package/lib/__templates__/nuxt-app/.nuxt/types/components.d.ts +0 -69
  68. package/lib/__templates__/nuxt-app/.nuxt/types/imports.d.ts +0 -360
  69. package/lib/__templates__/nuxt-app/.nuxt/types/middleware.d.ts +0 -11
  70. package/lib/__templates__/nuxt-app/.nuxt/types/modules.d.ts +0 -79
  71. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-config.d.ts +0 -14
  72. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-imports.d.ts +0 -151
  73. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-layouts.d.ts +0 -17
  74. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-nuxt.d.ts +0 -64
  75. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-routes.d.ts +0 -17
  76. package/lib/__templates__/nuxt-app/.nuxt/types/nitro.d.ts +0 -3
  77. package/lib/__templates__/nuxt-app/.nuxt/types/plugins.d.ts +0 -30
  78. package/lib/__templates__/nuxt-app/.nuxt/types/runtime-config.d.ts +0 -32
  79. package/lib/__templates__/nuxt-app/.nuxt/types/shared-imports.d.ts +0 -10
  80. package/lib/__templates__/nuxt-app/.nuxt/types/vue-shim.d.ts +0 -0
@@ -1,360 +0,0 @@
1
- // Generated by auto imports
2
- export {}
3
- declare global {
4
- const abortNavigation: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router').abortNavigation
5
- const addRouteMiddleware: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router').addRouteMiddleware
6
- const callOnce: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/once').callOnce
7
- const cancelIdleCallback: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/compat/idle-callback').cancelIdleCallback
8
- const clearError: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/error').clearError
9
- const clearNuxtData: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/asyncData').clearNuxtData
10
- const clearNuxtState: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/state').clearNuxtState
11
- const computed: typeof import('vue').computed
12
- const createError: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/error').createError
13
- const customRef: typeof import('vue').customRef
14
- const defineAppConfig: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/nuxt').defineAppConfig
15
- const defineAsyncComponent: typeof import('vue').defineAsyncComponent
16
- const defineComponent: typeof import('vue').defineComponent
17
- const defineLazyHydrationComponent: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/lazy-hydration').defineLazyHydrationComponent
18
- const defineNuxtComponent: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/component').defineNuxtComponent
19
- const defineNuxtLink: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-link').defineNuxtLink
20
- const defineNuxtPlugin: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/nuxt').defineNuxtPlugin
21
- const defineNuxtRouteMiddleware: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router').defineNuxtRouteMiddleware
22
- const definePayloadPlugin: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/nuxt').definePayloadPlugin
23
- const definePayloadReducer: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/payload').definePayloadReducer
24
- const definePayloadReviver: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/payload').definePayloadReviver
25
- const effect: typeof import('vue').effect
26
- const effectScope: typeof import('vue').effectScope
27
- const getAppManifest: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/manifest').getAppManifest
28
- const getCurrentInstance: typeof import('vue').getCurrentInstance
29
- const getCurrentScope: typeof import('vue').getCurrentScope
30
- const getRouteRules: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/manifest').getRouteRules
31
- const h: typeof import('vue').h
32
- const hasInjectionContext: typeof import('vue').hasInjectionContext
33
- const inject: typeof import('vue').inject
34
- const injectHead: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/head').injectHead
35
- const isNuxtError: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/error').isNuxtError
36
- const isPrerendered: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/payload').isPrerendered
37
- const isProxy: typeof import('vue').isProxy
38
- const isReactive: typeof import('vue').isReactive
39
- const isReadonly: typeof import('vue').isReadonly
40
- const isRef: typeof import('vue').isRef
41
- const isShallow: typeof import('vue').isShallow
42
- const isVue2: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/compat/vue-demi').isVue2
43
- const isVue3: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/compat/vue-demi').isVue3
44
- const loadPayload: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/payload').loadPayload
45
- const markRaw: typeof import('vue').markRaw
46
- const navigateTo: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router').navigateTo
47
- const nextTick: typeof import('vue').nextTick
48
- const onActivated: typeof import('vue').onActivated
49
- const onBeforeMount: typeof import('vue').onBeforeMount
50
- const onBeforeRouteLeave: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router').onBeforeRouteLeave
51
- const onBeforeRouteUpdate: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router').onBeforeRouteUpdate
52
- const onBeforeUnmount: typeof import('vue').onBeforeUnmount
53
- const onBeforeUpdate: typeof import('vue').onBeforeUpdate
54
- const onDeactivated: typeof import('vue').onDeactivated
55
- const onErrorCaptured: typeof import('vue').onErrorCaptured
56
- const onMounted: typeof import('vue').onMounted
57
- const onNuxtReady: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ready').onNuxtReady
58
- const onPrehydrate: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ssr').onPrehydrate
59
- const onRenderTracked: typeof import('vue').onRenderTracked
60
- const onRenderTriggered: typeof import('vue').onRenderTriggered
61
- const onScopeDispose: typeof import('vue').onScopeDispose
62
- const onServerPrefetch: typeof import('vue').onServerPrefetch
63
- const onUnmounted: typeof import('vue').onUnmounted
64
- const onUpdated: typeof import('vue').onUpdated
65
- const onWatcherCleanup: typeof import('vue').onWatcherCleanup
66
- const prefetchComponents: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/preload').prefetchComponents
67
- const preloadComponents: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/preload').preloadComponents
68
- const preloadPayload: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/payload').preloadPayload
69
- const preloadRouteComponents: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/preload').preloadRouteComponents
70
- const prerenderRoutes: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ssr').prerenderRoutes
71
- const provide: typeof import('vue').provide
72
- const proxyRefs: typeof import('vue').proxyRefs
73
- const reactive: typeof import('vue').reactive
74
- const readonly: typeof import('vue').readonly
75
- const ref: typeof import('vue').ref
76
- const refreshCookie: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/cookie').refreshCookie
77
- const refreshNuxtData: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/asyncData').refreshNuxtData
78
- const reloadNuxtApp: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/chunk').reloadNuxtApp
79
- const requestIdleCallback: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/compat/idle-callback').requestIdleCallback
80
- const resolveComponent: typeof import('vue').resolveComponent
81
- const setInterval: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/compat/interval').setInterval
82
- const setPageLayout: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router').setPageLayout
83
- const setResponseStatus: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ssr').setResponseStatus
84
- const shallowReactive: typeof import('vue').shallowReactive
85
- const shallowReadonly: typeof import('vue').shallowReadonly
86
- const shallowRef: typeof import('vue').shallowRef
87
- const showError: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/error').showError
88
- const toRaw: typeof import('vue').toRaw
89
- const toRef: typeof import('vue').toRef
90
- const toRefs: typeof import('vue').toRefs
91
- const toValue: typeof import('vue').toValue
92
- const triggerRef: typeof import('vue').triggerRef
93
- const tryUseNuxtApp: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/nuxt').tryUseNuxtApp
94
- const unref: typeof import('vue').unref
95
- const updateAppConfig: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/config').updateAppConfig
96
- const useAppConfig: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/config').useAppConfig
97
- const useAsyncData: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/asyncData').useAsyncData
98
- const useAttrs: typeof import('vue').useAttrs
99
- const useCookie: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/cookie').useCookie
100
- const useCssModule: typeof import('vue').useCssModule
101
- const useCssVars: typeof import('vue').useCssVars
102
- const useError: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/error').useError
103
- const useFetch: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/fetch').useFetch
104
- const useHead: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/head').useHead
105
- const useHeadSafe: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/head').useHeadSafe
106
- const useHydration: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/hydrate').useHydration
107
- const useId: typeof import('vue').useId
108
- const useImage: typeof import('../../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime/composables').useImage
109
- const useLazyAsyncData: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/asyncData').useLazyAsyncData
110
- const useLazyFetch: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/fetch').useLazyFetch
111
- const useLoadingIndicator: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/loading-indicator').useLoadingIndicator
112
- const useModel: typeof import('vue').useModel
113
- const useNuxtApp: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/nuxt').useNuxtApp
114
- const useNuxtData: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/asyncData').useNuxtData
115
- const usePreviewMode: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/preview').usePreviewMode
116
- const useRequestEvent: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ssr').useRequestEvent
117
- const useRequestFetch: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ssr').useRequestFetch
118
- const useRequestHeader: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ssr').useRequestHeader
119
- const useRequestHeaders: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ssr').useRequestHeaders
120
- const useRequestURL: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/url').useRequestURL
121
- const useResponseHeader: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ssr').useResponseHeader
122
- const useRoute: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router').useRoute
123
- const useRouteAnnouncer: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/route-announcer').useRouteAnnouncer
124
- const useRouter: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router').useRouter
125
- const useRuntimeConfig: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/nuxt').useRuntimeConfig
126
- const useRuntimeHook: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/runtime-hook').useRuntimeHook
127
- const useScript: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScript
128
- const useScriptClarity: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptClarity
129
- const useScriptCloudflareWebAnalytics: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptCloudflareWebAnalytics
130
- const useScriptCrisp: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptCrisp
131
- const useScriptDatabuddyAnalytics: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptDatabuddyAnalytics
132
- const useScriptEventPage: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptEventPage
133
- const useScriptFathomAnalytics: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptFathomAnalytics
134
- const useScriptGoogleAdsense: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptGoogleAdsense
135
- const useScriptGoogleAnalytics: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptGoogleAnalytics
136
- const useScriptGoogleMaps: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptGoogleMaps
137
- const useScriptGoogleTagManager: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptGoogleTagManager
138
- const useScriptHotjar: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptHotjar
139
- const useScriptIntercom: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptIntercom
140
- const useScriptLemonSqueezy: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptLemonSqueezy
141
- const useScriptMatomoAnalytics: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptMatomoAnalytics
142
- const useScriptMetaPixel: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptMetaPixel
143
- const useScriptNpm: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptNpm
144
- const useScriptPayPal: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptPayPal
145
- const useScriptPlausibleAnalytics: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptPlausibleAnalytics
146
- const useScriptRedditPixel: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptRedditPixel
147
- const useScriptRybbitAnalytics: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptRybbitAnalytics
148
- const useScriptSegment: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptSegment
149
- const useScriptSnapchatPixel: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptSnapchatPixel
150
- const useScriptStripe: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptStripe
151
- const useScriptTriggerConsent: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptTriggerConsent
152
- const useScriptTriggerElement: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptTriggerElement
153
- const useScriptUmamiAnalytics: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptUmamiAnalytics
154
- const useScriptVimeoPlayer: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptVimeoPlayer
155
- const useScriptXPixel: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptXPixel
156
- const useScriptYouTubePlayer: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs').useScriptYouTubePlayer
157
- const useSeoMeta: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/head').useSeoMeta
158
- const useServerHead: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/head').useServerHead
159
- const useServerHeadSafe: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/head').useServerHeadSafe
160
- const useServerSeoMeta: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/head').useServerSeoMeta
161
- const useShadowRoot: typeof import('vue').useShadowRoot
162
- const useSlots: typeof import('vue').useSlots
163
- const useState: typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/state').useState
164
- const useTemplateRef: typeof import('vue').useTemplateRef
165
- const useTransitionState: typeof import('vue').useTransitionState
166
- const watch: typeof import('vue').watch
167
- const watchEffect: typeof import('vue').watchEffect
168
- const watchPostEffect: typeof import('vue').watchPostEffect
169
- const watchSyncEffect: typeof import('vue').watchSyncEffect
170
- const withCtx: typeof import('vue').withCtx
171
- const withDirectives: typeof import('vue').withDirectives
172
- const withKeys: typeof import('vue').withKeys
173
- const withMemo: typeof import('vue').withMemo
174
- const withModifiers: typeof import('vue').withModifiers
175
- const withScopeId: typeof import('vue').withScopeId
176
- }
177
- // for type re-export
178
- declare global {
179
- // @ts-ignore
180
- export type { Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
181
- import('vue')
182
- }
183
- // for vue template auto import
184
- import { UnwrapRef } from 'vue'
185
- declare module 'vue' {
186
- interface ComponentCustomProperties {
187
- readonly abortNavigation: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router')['abortNavigation']>
188
- readonly addRouteMiddleware: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router')['addRouteMiddleware']>
189
- readonly callOnce: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/once')['callOnce']>
190
- readonly cancelIdleCallback: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/compat/idle-callback')['cancelIdleCallback']>
191
- readonly clearError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/error')['clearError']>
192
- readonly clearNuxtData: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/asyncData')['clearNuxtData']>
193
- readonly clearNuxtState: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/state')['clearNuxtState']>
194
- readonly computed: UnwrapRef<typeof import('vue')['computed']>
195
- readonly createError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/error')['createError']>
196
- readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
197
- readonly defineAppConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/nuxt')['defineAppConfig']>
198
- readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
199
- readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
200
- readonly defineLazyHydrationComponent: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/lazy-hydration')['defineLazyHydrationComponent']>
201
- readonly defineNuxtComponent: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/component')['defineNuxtComponent']>
202
- readonly defineNuxtLink: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/components/nuxt-link')['defineNuxtLink']>
203
- readonly defineNuxtPlugin: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/nuxt')['defineNuxtPlugin']>
204
- readonly defineNuxtRouteMiddleware: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router')['defineNuxtRouteMiddleware']>
205
- readonly definePayloadPlugin: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/nuxt')['definePayloadPlugin']>
206
- readonly definePayloadReducer: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/payload')['definePayloadReducer']>
207
- readonly definePayloadReviver: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/payload')['definePayloadReviver']>
208
- readonly effect: UnwrapRef<typeof import('vue')['effect']>
209
- readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
210
- readonly getAppManifest: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/manifest')['getAppManifest']>
211
- readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
212
- readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
213
- readonly getRouteRules: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/manifest')['getRouteRules']>
214
- readonly h: UnwrapRef<typeof import('vue')['h']>
215
- readonly hasInjectionContext: UnwrapRef<typeof import('vue')['hasInjectionContext']>
216
- readonly inject: UnwrapRef<typeof import('vue')['inject']>
217
- readonly injectHead: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/head')['injectHead']>
218
- readonly isNuxtError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/error')['isNuxtError']>
219
- readonly isPrerendered: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/payload')['isPrerendered']>
220
- readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
221
- readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
222
- readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
223
- readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
224
- readonly isShallow: UnwrapRef<typeof import('vue')['isShallow']>
225
- readonly isVue2: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/compat/vue-demi')['isVue2']>
226
- readonly isVue3: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/compat/vue-demi')['isVue3']>
227
- readonly loadPayload: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/payload')['loadPayload']>
228
- readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
229
- readonly navigateTo: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router')['navigateTo']>
230
- readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
231
- readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
232
- readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
233
- readonly onBeforeRouteLeave: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router')['onBeforeRouteLeave']>
234
- readonly onBeforeRouteUpdate: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router')['onBeforeRouteUpdate']>
235
- readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
236
- readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
237
- readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
238
- readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
239
- readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
240
- readonly onNuxtReady: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ready')['onNuxtReady']>
241
- readonly onPrehydrate: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ssr')['onPrehydrate']>
242
- readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
243
- readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
244
- readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
245
- readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
246
- readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
247
- readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
248
- readonly onWatcherCleanup: UnwrapRef<typeof import('vue')['onWatcherCleanup']>
249
- readonly prefetchComponents: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/preload')['prefetchComponents']>
250
- readonly preloadComponents: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/preload')['preloadComponents']>
251
- readonly preloadPayload: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/payload')['preloadPayload']>
252
- readonly preloadRouteComponents: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/preload')['preloadRouteComponents']>
253
- readonly prerenderRoutes: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ssr')['prerenderRoutes']>
254
- readonly provide: UnwrapRef<typeof import('vue')['provide']>
255
- readonly proxyRefs: UnwrapRef<typeof import('vue')['proxyRefs']>
256
- readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
257
- readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
258
- readonly ref: UnwrapRef<typeof import('vue')['ref']>
259
- readonly refreshCookie: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/cookie')['refreshCookie']>
260
- readonly refreshNuxtData: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/asyncData')['refreshNuxtData']>
261
- readonly reloadNuxtApp: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/chunk')['reloadNuxtApp']>
262
- readonly requestIdleCallback: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/compat/idle-callback')['requestIdleCallback']>
263
- readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
264
- readonly setInterval: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/compat/interval')['setInterval']>
265
- readonly setPageLayout: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router')['setPageLayout']>
266
- readonly setResponseStatus: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ssr')['setResponseStatus']>
267
- readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
268
- readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
269
- readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
270
- readonly showError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/error')['showError']>
271
- readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
272
- readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
273
- readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
274
- readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
275
- readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
276
- readonly tryUseNuxtApp: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/nuxt')['tryUseNuxtApp']>
277
- readonly unref: UnwrapRef<typeof import('vue')['unref']>
278
- readonly updateAppConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/config')['updateAppConfig']>
279
- readonly useAppConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/config')['useAppConfig']>
280
- readonly useAsyncData: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/asyncData')['useAsyncData']>
281
- readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
282
- readonly useCookie: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/cookie')['useCookie']>
283
- readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
284
- readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
285
- readonly useError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/error')['useError']>
286
- readonly useFetch: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/fetch')['useFetch']>
287
- readonly useHead: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/head')['useHead']>
288
- readonly useHeadSafe: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/head')['useHeadSafe']>
289
- readonly useHydration: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/hydrate')['useHydration']>
290
- readonly useId: UnwrapRef<typeof import('vue')['useId']>
291
- readonly useImage: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+image@1.11.0_db0@0.3.4_ioredis@5.10.0_magicast@0.5.2/node_modules/@nuxt/image/dist/runtime/composables')['useImage']>
292
- readonly useLazyAsyncData: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/asyncData')['useLazyAsyncData']>
293
- readonly useLazyFetch: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/fetch')['useLazyFetch']>
294
- readonly useLoadingIndicator: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/loading-indicator')['useLoadingIndicator']>
295
- readonly useModel: UnwrapRef<typeof import('vue')['useModel']>
296
- readonly useNuxtApp: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/nuxt')['useNuxtApp']>
297
- readonly useNuxtData: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/asyncData')['useNuxtData']>
298
- readonly usePreviewMode: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/preview')['usePreviewMode']>
299
- readonly useRequestEvent: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ssr')['useRequestEvent']>
300
- readonly useRequestFetch: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ssr')['useRequestFetch']>
301
- readonly useRequestHeader: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ssr')['useRequestHeader']>
302
- readonly useRequestHeaders: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ssr')['useRequestHeaders']>
303
- readonly useRequestURL: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/url')['useRequestURL']>
304
- readonly useResponseHeader: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/ssr')['useResponseHeader']>
305
- readonly useRoute: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router')['useRoute']>
306
- readonly useRouteAnnouncer: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/route-announcer')['useRouteAnnouncer']>
307
- readonly useRouter: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/router')['useRouter']>
308
- readonly useRuntimeConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/nuxt')['useRuntimeConfig']>
309
- readonly useRuntimeHook: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/runtime-hook')['useRuntimeHook']>
310
- readonly useScript: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScript']>
311
- readonly useScriptClarity: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptClarity']>
312
- readonly useScriptCloudflareWebAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptCloudflareWebAnalytics']>
313
- readonly useScriptCrisp: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptCrisp']>
314
- readonly useScriptDatabuddyAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptDatabuddyAnalytics']>
315
- readonly useScriptEventPage: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptEventPage']>
316
- readonly useScriptFathomAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptFathomAnalytics']>
317
- readonly useScriptGoogleAdsense: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptGoogleAdsense']>
318
- readonly useScriptGoogleAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptGoogleAnalytics']>
319
- readonly useScriptGoogleMaps: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptGoogleMaps']>
320
- readonly useScriptGoogleTagManager: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptGoogleTagManager']>
321
- readonly useScriptHotjar: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptHotjar']>
322
- readonly useScriptIntercom: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptIntercom']>
323
- readonly useScriptLemonSqueezy: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptLemonSqueezy']>
324
- readonly useScriptMatomoAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptMatomoAnalytics']>
325
- readonly useScriptMetaPixel: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptMetaPixel']>
326
- readonly useScriptNpm: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptNpm']>
327
- readonly useScriptPayPal: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptPayPal']>
328
- readonly useScriptPlausibleAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptPlausibleAnalytics']>
329
- readonly useScriptRedditPixel: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptRedditPixel']>
330
- readonly useScriptRybbitAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptRybbitAnalytics']>
331
- readonly useScriptSegment: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptSegment']>
332
- readonly useScriptSnapchatPixel: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptSnapchatPixel']>
333
- readonly useScriptStripe: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptStripe']>
334
- readonly useScriptTriggerConsent: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptTriggerConsent']>
335
- readonly useScriptTriggerElement: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptTriggerElement']>
336
- readonly useScriptUmamiAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptUmamiAnalytics']>
337
- readonly useScriptVimeoPlayer: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptVimeoPlayer']>
338
- readonly useScriptXPixel: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptXPixel']>
339
- readonly useScriptYouTubePlayer: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/script-stubs')['useScriptYouTubePlayer']>
340
- readonly useSeoMeta: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/head')['useSeoMeta']>
341
- readonly useServerHead: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/head')['useServerHead']>
342
- readonly useServerHeadSafe: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/head')['useServerHeadSafe']>
343
- readonly useServerSeoMeta: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/head')['useServerSeoMeta']>
344
- readonly useShadowRoot: UnwrapRef<typeof import('vue')['useShadowRoot']>
345
- readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
346
- readonly useState: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@4.3.1_@parcel+watcher@2.5.6_@types+node@20.19.37_@vue+compiler-sfc@3.5.30_cac@6.7.14_com_taatluv2yjzii3bpz3arwgamsa/node_modules/nuxt/dist/app/composables/state')['useState']>
347
- readonly useTemplateRef: UnwrapRef<typeof import('vue')['useTemplateRef']>
348
- readonly useTransitionState: UnwrapRef<typeof import('vue')['useTransitionState']>
349
- readonly watch: UnwrapRef<typeof import('vue')['watch']>
350
- readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
351
- readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
352
- readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
353
- readonly withCtx: UnwrapRef<typeof import('vue')['withCtx']>
354
- readonly withDirectives: UnwrapRef<typeof import('vue')['withDirectives']>
355
- readonly withKeys: UnwrapRef<typeof import('vue')['withKeys']>
356
- readonly withMemo: UnwrapRef<typeof import('vue')['withMemo']>
357
- readonly withModifiers: UnwrapRef<typeof import('vue')['withModifiers']>
358
- readonly withScopeId: UnwrapRef<typeof import('vue')['withScopeId']>
359
- }
360
- }
@@ -1,11 +0,0 @@
1
- declare module 'nitropack/types' {
2
- interface NitroRouteConfig {
3
- appMiddleware?: string | string[] | Record<string, boolean>
4
- }
5
- }
6
- declare module 'nitropack' {
7
- interface NitroRouteConfig {
8
- appMiddleware?: string | string[] | Record<string, boolean>
9
- }
10
- }
11
- export {}
@@ -1,79 +0,0 @@
1
- import { NuxtModule, ModuleDependencyMeta } from '@nuxt/schema'
2
- declare module '@nuxt/schema' {
3
- interface ModuleDependencies {
4
- ["@nuxt/image"]?: ModuleDependencyMeta<typeof import("@nuxt/image").default extends NuxtModule<infer O> ? O | false : Record<string, unknown>> | false
5
- ["@nuxt/devtools"]?: ModuleDependencyMeta<typeof import("@nuxt/devtools").default extends NuxtModule<infer O> ? O | false : Record<string, unknown>> | false
6
- ["@nuxt/telemetry"]?: ModuleDependencyMeta<typeof import("@nuxt/telemetry").default extends NuxtModule<infer O> ? O | false : Record<string, unknown>> | false
7
- }
8
- interface NuxtOptions {
9
- /**
10
- * Configuration for `@nuxt/image`
11
- */
12
- ["image"]: typeof import("@nuxt/image").default extends NuxtModule<infer O, unknown, boolean> ? O | false : Record<string, any> | false
13
- /**
14
- * Configuration for `@nuxt/devtools`
15
- */
16
- ["devtools"]: typeof import("@nuxt/devtools").default extends NuxtModule<infer O, unknown, boolean> ? O | false : Record<string, any> | false
17
- /**
18
- * Configuration for `@nuxt/telemetry`
19
- */
20
- ["telemetry"]: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O, unknown, boolean> ? O | false : Record<string, any> | false
21
- }
22
- interface NuxtConfig {
23
- /**
24
- * Configuration for `@nuxt/image`
25
- */
26
- ["image"]?: typeof import("@nuxt/image").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> | false : Record<string, any> | false
27
- /**
28
- * Configuration for `@nuxt/devtools`
29
- */
30
- ["devtools"]?: typeof import("@nuxt/devtools").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> | false : Record<string, any> | false
31
- /**
32
- * Configuration for `@nuxt/telemetry`
33
- */
34
- ["telemetry"]?: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> | false : Record<string, any> | false
35
- modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
36
- }
37
- }
38
- declare module 'nuxt/schema' {
39
- interface ModuleDependencies {
40
- ["@nuxt/image"]?: ModuleDependencyMeta<typeof import("@nuxt/image").default extends NuxtModule<infer O> ? O | false : Record<string, unknown>> | false
41
- ["@nuxt/devtools"]?: ModuleDependencyMeta<typeof import("@nuxt/devtools").default extends NuxtModule<infer O> ? O | false : Record<string, unknown>> | false
42
- ["@nuxt/telemetry"]?: ModuleDependencyMeta<typeof import("@nuxt/telemetry").default extends NuxtModule<infer O> ? O | false : Record<string, unknown>> | false
43
- }
44
- interface NuxtOptions {
45
- /**
46
- * Configuration for `@nuxt/image`
47
- * @see https://www.npmjs.com/package/@nuxt/image
48
- */
49
- ["image"]: typeof import("@nuxt/image").default extends NuxtModule<infer O, unknown, boolean> ? O | false : Record<string, any> | false
50
- /**
51
- * Configuration for `@nuxt/devtools`
52
- * @see https://www.npmjs.com/package/@nuxt/devtools
53
- */
54
- ["devtools"]: typeof import("@nuxt/devtools").default extends NuxtModule<infer O, unknown, boolean> ? O | false : Record<string, any> | false
55
- /**
56
- * Configuration for `@nuxt/telemetry`
57
- * @see https://www.npmjs.com/package/@nuxt/telemetry
58
- */
59
- ["telemetry"]: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O, unknown, boolean> ? O | false : Record<string, any> | false
60
- }
61
- interface NuxtConfig {
62
- /**
63
- * Configuration for `@nuxt/image`
64
- * @see https://www.npmjs.com/package/@nuxt/image
65
- */
66
- ["image"]?: typeof import("@nuxt/image").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> | false : Record<string, any> | false
67
- /**
68
- * Configuration for `@nuxt/devtools`
69
- * @see https://www.npmjs.com/package/@nuxt/devtools
70
- */
71
- ["devtools"]?: typeof import("@nuxt/devtools").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> | false : Record<string, any> | false
72
- /**
73
- * Configuration for `@nuxt/telemetry`
74
- * @see https://www.npmjs.com/package/@nuxt/telemetry
75
- */
76
- ["telemetry"]?: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> | false : Record<string, any> | false
77
- modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
78
- }
79
- }
@@ -1,14 +0,0 @@
1
- // Generated by nitro
2
-
3
- // App Config
4
- import type { Defu } from 'defu'
5
-
6
-
7
-
8
- type UserAppConfig = Defu<{}, []>
9
-
10
- declare module "nitropack/types" {
11
- interface AppConfig extends UserAppConfig {}
12
-
13
- }
14
- export {}