fix(nuxt): move app augments to core `nuxt` types (#27900)

This commit is contained in:
Daniel Roe 2024-06-28 16:09:11 +02:00 committed by GitHub
parent d7c8c7d335
commit c763fae507
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,3 @@
/// <reference path="types/augments.d.ts" />
export * from './nuxt'
export * from './composables/index'

View File

@ -1,4 +1,5 @@
/// <reference types="nitro/types" />
/// <reference path="dist/app/types/augments.d.ts" />
import type { DefineNuxtConfig } from 'nuxt/config'
import type { RuntimeConfig, SchemaDefinition } from 'nuxt/schema'

View File

@ -1,4 +1,6 @@
/// <reference types="nitro/types" />
/// <reference path="dist/app/types/augments.d.ts" />
import type { DefineNuxtConfig } from 'nuxt/config'
import type { RuntimeConfig, SchemaDefinition } from 'nuxt/schema'
import type { H3Event } from 'h3'