18 lines
622 B
TypeScript
18 lines
622 B
TypeScript
|
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 {}
|
||
|
}
|