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) 394 B
import { LoadNuxtOptions } from "@nuxt/kit"; import { Nuxt, NuxtOptions } from "nuxt/schema"; //#region src/core/nuxt.d.ts declare function createNuxt(options: NuxtOptions): Nuxt; declare function loadNuxt(opts: LoadNuxtOptions): Promise<Nuxt>; //#endregion //#region src/core/builder.d.ts declare function build(nuxt: Nuxt): Promise<void>; //#endregion export { build, createNuxt, loadNuxt };