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.

8 lines (7 loc) 322 B
import type { H3Event } from 'h3'; import type { NuxtSSRContext } from '#app'; import type { NuxtPayload } from '#app/nuxt'; export declare function createSSRContext(event: H3Event): NuxtSSRContext; export declare function setSSRError(ssrContext: NuxtSSRContext, error: NuxtPayload['error'] & { url: string; }): void;