This commit is contained in:
104
.nuxt/types/schema.d.ts
vendored
104
.nuxt/types/schema.d.ts
vendored
@ -13,18 +13,6 @@ declare module '@nuxt/schema' {
|
||||
* Configuration for `@nuxt/image`
|
||||
*/
|
||||
["image"]: typeof import("@nuxt/image").default extends NuxtModule<infer O> ? O : Record<string, any>
|
||||
/**
|
||||
* Configuration for `@nuxtjs/mdc`
|
||||
*/
|
||||
["mdc"]: typeof import("@nuxtjs/mdc").default extends NuxtModule<infer O> ? O : Record<string, any>
|
||||
/**
|
||||
* Configuration for `@nuxt/content`
|
||||
*/
|
||||
["content"]: typeof import("@nuxt/content").default extends NuxtModule<infer O> ? O : Record<string, any>
|
||||
/**
|
||||
* Configuration for `@nuxt/fonts`
|
||||
*/
|
||||
["fonts"]: typeof import("@nuxt/fonts").default extends NuxtModule<infer O> ? O : Record<string, any>
|
||||
/**
|
||||
* Configuration for `@pinia/nuxt`
|
||||
*/
|
||||
@ -55,18 +43,6 @@ declare module '@nuxt/schema' {
|
||||
* Configuration for `@nuxt/image`
|
||||
*/
|
||||
["image"]?: typeof import("@nuxt/image").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
||||
/**
|
||||
* Configuration for `@nuxtjs/mdc`
|
||||
*/
|
||||
["mdc"]?: typeof import("@nuxtjs/mdc").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
||||
/**
|
||||
* Configuration for `@nuxt/content`
|
||||
*/
|
||||
["content"]?: typeof import("@nuxt/content").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
||||
/**
|
||||
* Configuration for `@nuxt/fonts`
|
||||
*/
|
||||
["fonts"]?: typeof import("@nuxt/fonts").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
||||
/**
|
||||
* Configuration for `@pinia/nuxt`
|
||||
*/
|
||||
@ -83,7 +59,7 @@ declare module '@nuxt/schema' {
|
||||
* Configuration for `@nuxt/telemetry`
|
||||
*/
|
||||
["telemetry"]?: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
||||
modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/eslint", Exclude<NuxtConfig["eslint"], boolean>] | ["@nuxt/icon", Exclude<NuxtConfig["icon"], boolean>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@nuxtjs/mdc", Exclude<NuxtConfig["mdc"], boolean>] | ["@nuxt/content", Exclude<NuxtConfig["content"], boolean>] | ["@nuxt/fonts", Exclude<NuxtConfig["fonts"], boolean>] | ["@pinia/nuxt", Exclude<NuxtConfig["pinia"], boolean>] | ["@nuxtjs/tailwindcss", Exclude<NuxtConfig["tailwindcss"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
|
||||
modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/eslint", Exclude<NuxtConfig["eslint"], boolean>] | ["@nuxt/icon", Exclude<NuxtConfig["icon"], boolean>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@pinia/nuxt", Exclude<NuxtConfig["pinia"], boolean>] | ["@nuxtjs/tailwindcss", Exclude<NuxtConfig["tailwindcss"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
|
||||
}
|
||||
}
|
||||
declare module 'nuxt/schema' {
|
||||
@ -103,21 +79,6 @@ declare module 'nuxt/schema' {
|
||||
* @see https://www.npmjs.com/package/@nuxt/image
|
||||
*/
|
||||
["image"]: typeof import("@nuxt/image").default extends NuxtModule<infer O> ? O : Record<string, any>
|
||||
/**
|
||||
* Configuration for `@nuxtjs/mdc`
|
||||
* @see https://www.npmjs.com/package/@nuxtjs/mdc
|
||||
*/
|
||||
["mdc"]: typeof import("@nuxtjs/mdc").default extends NuxtModule<infer O> ? O : Record<string, any>
|
||||
/**
|
||||
* Configuration for `@nuxt/content`
|
||||
* @see https://content.nuxt.com
|
||||
*/
|
||||
["content"]: typeof import("@nuxt/content").default extends NuxtModule<infer O> ? O : Record<string, any>
|
||||
/**
|
||||
* Configuration for `@nuxt/fonts`
|
||||
* @see https://www.npmjs.com/package/@nuxt/fonts
|
||||
*/
|
||||
["fonts"]: typeof import("@nuxt/fonts").default extends NuxtModule<infer O> ? O : Record<string, any>
|
||||
/**
|
||||
* Configuration for `@pinia/nuxt`
|
||||
* @see https://www.npmjs.com/package/@pinia/nuxt
|
||||
@ -155,21 +116,6 @@ declare module 'nuxt/schema' {
|
||||
* @see https://www.npmjs.com/package/@nuxt/image
|
||||
*/
|
||||
["image"]?: typeof import("@nuxt/image").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
||||
/**
|
||||
* Configuration for `@nuxtjs/mdc`
|
||||
* @see https://www.npmjs.com/package/@nuxtjs/mdc
|
||||
*/
|
||||
["mdc"]?: typeof import("@nuxtjs/mdc").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
||||
/**
|
||||
* Configuration for `@nuxt/content`
|
||||
* @see https://content.nuxt.com
|
||||
*/
|
||||
["content"]?: typeof import("@nuxt/content").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
||||
/**
|
||||
* Configuration for `@nuxt/fonts`
|
||||
* @see https://www.npmjs.com/package/@nuxt/fonts
|
||||
*/
|
||||
["fonts"]?: typeof import("@nuxt/fonts").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
||||
/**
|
||||
* Configuration for `@pinia/nuxt`
|
||||
* @see https://www.npmjs.com/package/@pinia/nuxt
|
||||
@ -190,7 +136,7 @@ declare module 'nuxt/schema' {
|
||||
* @see https://www.npmjs.com/package/@nuxt/telemetry
|
||||
*/
|
||||
["telemetry"]?: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
||||
modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/eslint", Exclude<NuxtConfig["eslint"], boolean>] | ["@nuxt/icon", Exclude<NuxtConfig["icon"], boolean>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@nuxtjs/mdc", Exclude<NuxtConfig["mdc"], boolean>] | ["@nuxt/content", Exclude<NuxtConfig["content"], boolean>] | ["@nuxt/fonts", Exclude<NuxtConfig["fonts"], boolean>] | ["@pinia/nuxt", Exclude<NuxtConfig["pinia"], boolean>] | ["@nuxtjs/tailwindcss", Exclude<NuxtConfig["tailwindcss"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
|
||||
modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/eslint", Exclude<NuxtConfig["eslint"], boolean>] | ["@nuxt/icon", Exclude<NuxtConfig["icon"], boolean>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@pinia/nuxt", Exclude<NuxtConfig["pinia"], boolean>] | ["@nuxtjs/tailwindcss", Exclude<NuxtConfig["tailwindcss"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
|
||||
}
|
||||
interface RuntimeConfig {
|
||||
app: {
|
||||
@ -210,55 +156,9 @@ declare module 'nuxt/schema' {
|
||||
icon: {
|
||||
serverKnownCssClasses: Array<any>,
|
||||
},
|
||||
|
||||
content: {
|
||||
databaseVersion: string,
|
||||
|
||||
version: string,
|
||||
|
||||
database: {
|
||||
type: string,
|
||||
|
||||
filename: string,
|
||||
},
|
||||
|
||||
localDatabase: {
|
||||
type: string,
|
||||
|
||||
filename: string,
|
||||
},
|
||||
|
||||
integrityCheck: boolean,
|
||||
},
|
||||
}
|
||||
interface PublicRuntimeConfig {
|
||||
content: {
|
||||
wsUrl: string,
|
||||
},
|
||||
|
||||
mdc: {
|
||||
components: {
|
||||
prose: boolean,
|
||||
|
||||
map: any,
|
||||
},
|
||||
|
||||
headings: {
|
||||
anchorLinks: {
|
||||
h1: boolean,
|
||||
|
||||
h2: boolean,
|
||||
|
||||
h3: boolean,
|
||||
|
||||
h4: boolean,
|
||||
|
||||
h5: boolean,
|
||||
|
||||
h6: boolean,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
declare module 'vue' {
|
||||
|
Reference in New Issue
Block a user