docs: rename `AppConfig` to `AppConfigInput` (#7293)

This commit is contained in:
Sébastien Chopin 2022-09-06 18:15:27 +02:00 committed by GitHub
parent a931667111
commit a631da9e56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -38,11 +38,11 @@ It is also possible to type app config manually:
```ts [index.d.ts]
declare module '@nuxt/schema' {
interface AppConfig {
interface AppConfigInput {
/** Theme configuration */
theme: {
theme?: {
/** Primary app color */
primaryColor: string
primaryColor?: string
}
}
}