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.

10 lines (6 loc) 309 B
import { LoadNuxtOptions } from '@nuxt/kit'; import { NuxtOptions, Nuxt } from 'nuxt/schema'; declare function createNuxt(options: NuxtOptions): Nuxt; declare function loadNuxt(opts: LoadNuxtOptions): Promise<Nuxt>; declare function build(nuxt: Nuxt): Promise<any>; export { build, createNuxt, loadNuxt };