/** * Nexus Navigation Server Handler * * Responds to /_nexus/navigate?path=... requests from the client router. * Returns a JSON payload with the new page's HTML and metadata, * optimized for the DOM morphing algorithm. */ import type { RouteManifest } from '@nexus_js/router'; import type { RenderOptions } from './renderer.js'; export interface NavigationPayload { html: string; headHTML: string; timestamp: number; } export declare function handleNavigationRequest(request: Request, manifest: RouteManifest, renderOpts: RenderOptions): Promise; //# sourceMappingURL=navigate.d.ts.map