|
|
@ -7,7 +7,6 @@ type IsAny<T> = 0 extends 1 & T ? true : false |
|
|
|
type InjectionType<A extends Plugin> = IsAny<A> extends true ? unknown : A extends Plugin<infer T> ? Decorate<T> : unknown |
|
|
|
|
|
|
|
type NuxtAppInjections = |
|
|
|
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.12.4_@parcel+watcher@2.4.1_@types+node@22.4.2_encoding@0.1.13_eslint@8.57.0_ioredis@5._om2iw7d5au5ekmzbwlfm3q6gd4/node_modules/nuxt/dist/app/plugins/payload.client").default> & |
|
|
|
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.12.4_@parcel+watcher@2.4.1_@types+node@22.4.2_encoding@0.1.13_eslint@8.57.0_ioredis@5._om2iw7d5au5ekmzbwlfm3q6gd4/node_modules/nuxt/dist/app/plugins/navigation-repaint.client").default> & |
|
|
|
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.12.4_@parcel+watcher@2.4.1_@types+node@22.4.2_encoding@0.1.13_eslint@8.57.0_ioredis@5._om2iw7d5au5ekmzbwlfm3q6gd4/node_modules/nuxt/dist/app/plugins/check-outdated-build.client").default> & |
|
|
|
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.12.4_@parcel+watcher@2.4.1_@types+node@22.4.2_encoding@0.1.13_eslint@8.57.0_ioredis@5._om2iw7d5au5ekmzbwlfm3q6gd4/node_modules/nuxt/dist/app/plugins/revive-payload.server").default> & |
|
|
@ -16,13 +15,16 @@ type NuxtAppInjections = |
|
|
|
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.12.4_@parcel+watcher@2.4.1_@types+node@22.4.2_encoding@0.1.13_eslint@8.57.0_ioredis@5._om2iw7d5au5ekmzbwlfm3q6gd4/node_modules/nuxt/dist/head/runtime/plugins/unhead").default> & |
|
|
|
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.12.4_@parcel+watcher@2.4.1_@types+node@22.4.2_encoding@0.1.13_eslint@8.57.0_ioredis@5._om2iw7d5au5ekmzbwlfm3q6gd4/node_modules/nuxt/dist/pages/runtime/plugins/router").default> & |
|
|
|
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.12.4_@parcel+watcher@2.4.1_@types+node@22.4.2_encoding@0.1.13_eslint@8.57.0_ioredis@5._om2iw7d5au5ekmzbwlfm3q6gd4/node_modules/nuxt/dist/pages/runtime/plugins/prefetch.client").default> & |
|
|
|
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.12.4_@parcel+watcher@2.4.1_@types+node@22.4.2_encoding@0.1.13_eslint@8.57.0_ioredis@5._om2iw7d5au5ekmzbwlfm3q6gd4/node_modules/nuxt/dist/pages/runtime/plugins/check-if-page-unused").default> & |
|
|
|
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.12.4_@parcel+watcher@2.4.1_@types+node@22.4.2_encoding@0.1.13_eslint@8.57.0_ioredis@5._om2iw7d5au5ekmzbwlfm3q6gd4/node_modules/nuxt/dist/app/plugins/dev-server-logs").default> & |
|
|
|
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.12.4_@parcel+watcher@2.4.1_@types+node@22.4.2_encoding@0.1.13_eslint@8.57.0_ioredis@5._om2iw7d5au5ekmzbwlfm3q6gd4/node_modules/nuxt/dist/app/plugins/check-if-layout-used").default> & |
|
|
|
InjectionType<typeof import("../../plugins/element-ui").default> |
|
|
|
|
|
|
|
declare module '#app' { |
|
|
|
interface NuxtApp extends NuxtAppInjections { } |
|
|
|
|
|
|
|
interface NuxtAppLiterals { |
|
|
|
pluginName: 'nuxt:revive-payload:client' | 'nuxt:head' | 'nuxt:router' | 'nuxt:payload' | 'nuxt:revive-payload:server' | 'nuxt:chunk-reload' | 'nuxt:global-components' | 'nuxt:prefetch' |
|
|
|
pluginName: 'nuxt:revive-payload:client' | 'nuxt:head' | 'nuxt:router' | 'nuxt:revive-payload:server' | 'nuxt:chunk-reload' | 'nuxt:global-components' | 'nuxt:prefetch' | 'nuxt:checkIfPageUnused' | 'nuxt:checkIfLayoutUsed' |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|