/** * Detect orchestrator: runs all package detectors concurrently, * flattens results, and deduplicates by purl equivalence. * * @experimental This API is unstable and may change without notice. * @packageDocumentation */ import * as Effect from "effect/Effect"; import type { PackageDetector } from "./types.js"; /** * Run all detectors concurrently, flatten and deduplicate results. * * @experimental This API is unstable and may change without notice. */ export declare const detectPackages: (projectDir: string, detectors: readonly PackageDetector[]) => Effect.Effect; //# sourceMappingURL=detect.d.ts.map