UNPKG

vike

Version:

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

12 lines (11 loc) 468 B
export { log404 }; export { getRoutesInfo }; import type { PageRoutes } from '../../../../shared/route/index.js'; import type { GlobalContextServerInternal } from '../../globalContext.js'; declare function log404(pageContext: { urlPathname: string; errorWhileRendering: null | Error; isClientSideNavigation: boolean; _globalContext: GlobalContextServerInternal; }): Promise<void>; declare function getRoutesInfo(pageRoutes: PageRoutes): string | null;