/** * HTTP routes for the manifest, taken verbatim from the route inventory the * analyzer already produces (Express, Fastify, NestJS, FastAPI, … detectors * live in the analyzer). We do not add framework parsers here (spec-05 scope). * * TODO(spec-05-followup): more framework detectors in the analyzer. */ export interface RouteInventoryEntry { method: string; path: string; framework?: string; file?: string; handler?: string; } export interface ManifestRoute { method: string; path: string; /** ":" when both are known, else whichever is known, else null. */ handler: string | null; } export declare function deriveHttpRoutes(routes: RouteInventoryEntry[]): ManifestRoute[]; //# sourceMappingURL=http-routes.d.ts.map