UNPKG

nuxt

Version:

Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js.

7 lines 252 B
import { NuxtSSRContext } from "./types.js"; import { App } from "vue"; //#region src/app/entry.d.ts type Entry = (ssrContext?: NuxtSSRContext) => Promise<App<Element>>; declare const _default: Entry; //#endregion export { Entry, _default as default };