/** * @rangojs/router/server — Internal subpath * * This module is NOT user-facing. Import from "@rangojs/router" instead. * * Exports here are consumed by the Vite plugin (discovery, manifest injection, * virtual modules) and the RSC handler internals. They are not part of the * public API and may change without notice. */ export { RSC_ROUTER_BRAND, RouterRegistry, } from "./router.js"; export { registerRouteMap, setCachedManifest, setPrecomputedEntries, setRouteTrie, setManifestReadyPromise, setRouterManifest, setRouterTrie, setRouterPrecomputedEntries, registerRouterManifestLoader, ensureRouterManifest, } from "./route-map-builder.js"; export { registerLoaderById, setLoaderImports } from "./server/loader-registry.js"; export { createRequestContext, type CreateRequestContextOptions, } from "./server/request-context.js"; export { isClientComponent, assertClientComponent, } from "./component-utils.js"; //# sourceMappingURL=server.d.ts.map