/** * NuGet package detector and reader for package-compatibility discovery. * * @experimental This API is unstable and may change without notice. * @packageDocumentation */ import type { PackageDetector, PackageReader } from "./types.js"; /** * NuGet package detector. * * Scans `.csproj`, `.fsproj`, `.vbproj`, `Directory.Packages.props`, * and `packages.config` files in the project directory. * * @experimental This API is unstable and may change without notice. */ export declare const nugetDetector: PackageDetector; /** * NuGet package reader. * * Reads `axm.json` from `~/.nuget/packages/{id}/{version}/` for each * detected NuGet package and extracts recommendation metadata. * * @experimental This API is unstable and may change without notice. */ export declare const nugetReader: PackageReader; //# sourceMappingURL=nuget.d.ts.map