/** * Wiki graph API for the dashboard. * * SERVER-SIDE BY DESIGN. The browser never receives the whole graph; it asks * for a neighbourhood, a search result, or a page. A mature project's graph can * hold thousands of nodes, and shipping it wholesale would make every page load * a multi-megabyte download for a view that shows twenty things. * * The graph modules are plain ESM under hooks-core/ because Claude Code and the * other clients execute them directly from the installed plugin directory, with * no build step. They are imported dynamically here rather than statically so * that this TypeScript build has no compile-time dependency on untyped ESM, and * so a missing or unreadable graph degrades to an empty dashboard section * instead of failing the whole server to start. */ import type { Express } from 'express'; export declare function registerWikiRoutes(app: Express): void; //# sourceMappingURL=wiki-routes.d.ts.map