You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
622 B
17 lines
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 {}
|
|
}
|