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
parent bf2b581b53
commit 5831e9aacb
No known key found for this signature in database
GPG Key ID: CBC814C393D93268
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="nitropack" />
/// <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="nitropack" />
/// <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'