chore(nitro): add nitro config types for nuxt.config

This commit is contained in:
Pooya Parsa 2021-04-20 14:51:34 +02:00
parent 96649cc876
commit d341e844fe

View File

@ -1,3 +1,16 @@
import './shims'
import { NitroInput } from '../dist'
export * from '../dist/index'
declare module '@nuxt/kit' {
interface NuxtConfig {
nitro?: NitroInput
}
}
declare module '@nuxt/types' {
interface NuxtConfig {
nitro?: NitroInput
}
}
export * from '../dist'