export interface NuxtCustomSchema { } export type CustomAppConfig = Exclude type _CustomAppConfig = CustomAppConfig declare module '@nuxt/schema' { interface NuxtConfig extends Omit {} interface NuxtOptions extends Omit {} interface CustomAppConfig extends _CustomAppConfig {} } declare module 'nuxt/schema' { interface NuxtConfig extends Omit {} interface NuxtOptions extends Omit {} interface CustomAppConfig extends _CustomAppConfig {} }