/** * Node.js / TypeScript source-code pattern analyzer. * Detects HTTP routes, DB connections, auth middleware, and service calls * using regex scanning — no subprocess or external dependency required. */ import type { DetectedArtifact } from './types.js'; import type { ScannedFile } from './file-walker.js'; export declare function analyzeNodejsFile(file: ScannedFile): DetectedArtifact[]; //# sourceMappingURL=nodejs.d.ts.map