fix(nuxt): simplify plugin `InjectionType` template conditional (#29023)

This commit is contained in:
Ezra Ashenafi 2024-09-16 16:38:04 +03:00 committed by Daniel Roe
parent db5c1de3e4
commit 0bf748597f
No known key found for this signature in database
GPG Key ID: CBC814C393D93268
1 changed files with 2 additions and 3 deletions

View File

@ -165,10 +165,9 @@ import type { Plugin } from '#app'
type Decorate<T extends Record<string, any>> = { [K in keyof T as K extends string ? \`$\${K}\` : never]: T[K] }
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 InjectionType<A extends Plugin> = A extends {default: Plugin<infer T>} ? Decorate<T> : unknown
type NuxtAppInjections = \n ${tsImports.map(p => `InjectionType<typeof ${genDynamicImport(p, { wrapper: false })}.default>`).join(' &\n ')}
type NuxtAppInjections = \n ${tsImports.map(p => `InjectionType<typeof ${genDynamicImport(p, { wrapper: false })}>`).join(' &\n ')}
declare module '#app' {
interface NuxtApp extends NuxtAppInjections { }