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.

17 lines (16 loc) 457 B
export interface NuxtRenderHTMLContext { htmlAttrs: string[]; head: string[]; bodyAttrs: string[]; bodyPrepend: string[]; body: string[]; bodyAppend: string[]; } export interface NuxtRenderResponse { body: string; statusCode: number; statusMessage?: string; headers: Record<string, string>; } declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<any>>; export default _default;