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.

11 lines (10 loc) 368 B
import { App } from "vue"; import { SSRContext } from "vue-bundle-renderer/runtime"; //#region src/runtime/server/entry.d.ts /** * Signature matches `vue-bundle-renderer`'s `CreateApp<App<Element>>` so it can * be passed to `createRenderer()` without a cast. */ declare const stub: (ssrContext: SSRContext) => Promise<App>; //#endregion export { stub as default };