/** * C# / ASP.NET Core source-code pattern analyzer. * Covers controller attributes, minimal API endpoints, EF Core, Dapper, and auth patterns. * Uses file scanning — no Roslyn/dotnet subprocess required. */ import type { DetectedArtifact } from './types.js'; import type { ScannedFile } from './file-walker.js'; export declare function analyzeCsharpFile(file: ScannedFile): DetectedArtifact[]; //# sourceMappingURL=csharp.d.ts.map