UNPKG

vike

Version:

The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.

12 lines (11 loc) 527 B
export { handleErrorWithoutErrorPage }; import type { GlobalContextServerInternal } from '../globalContext.js'; import type { PageContextAfterRender } from './renderPageAlreadyRouted.js'; declare function handleErrorWithoutErrorPage<PageContext extends { isClientSideNavigation: boolean; errorWhileRendering: null | Error; is404: null | boolean; pageId: null; _globalContext: GlobalContextServerInternal; urlOriginal: string; }>(pageContext: PageContext): Promise<PageContext & PageContextAfterRender>;