UNPKG

@thunderstorefront/sdk

Version:

Create Nuxt extendable layer with this GitHub template.

18 lines (14 loc) 622 B
export interface NuxtCustomSchema { } export type CustomAppConfig = Exclude<NuxtCustomSchema['appConfig'], undefined> type _CustomAppConfig = CustomAppConfig declare module '@nuxt/schema' { interface NuxtConfig extends Omit<NuxtCustomSchema, 'appConfig'> {} interface NuxtOptions extends Omit<NuxtCustomSchema, 'appConfig'> {} interface CustomAppConfig extends _CustomAppConfig {} } declare module 'nuxt/schema' { interface NuxtConfig extends Omit<NuxtCustomSchema, 'appConfig'> {} interface NuxtOptions extends Omit<NuxtCustomSchema, 'appConfig'> {} interface CustomAppConfig extends _CustomAppConfig {} }