Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
17
Frontend-Learner/.nuxt/schema/nuxt.schema.d.ts
vendored
Normal file
17
Frontend-Learner/.nuxt/schema/nuxt.schema.d.ts
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
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 {}
|
||||
}
|
||||
3
Frontend-Learner/.nuxt/schema/nuxt.schema.json
Normal file
3
Frontend-Learner/.nuxt/schema/nuxt.schema.json
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"id": "#"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue