fix(types): make `NuxtConfig` an interface (#8169)

This commit is contained in:
Daniel Roe 2020-10-09 11:03:04 +01:00 committed by GitHub
parent 05353fcba8
commit 81030bef6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -71,4 +71,4 @@ export interface NuxtOptions extends Configuration {
watchers: NuxtOptionsWatchers
}
export type NuxtConfig = Partial<NuxtOptions>
export interface NuxtConfig extends Partial<NuxtOptions> {}