/** * Coverage analysis for the fly lexicon (#804) — how much of the generated * Machines API surface the lexicon's typed resources cover. Thin wrapper over * the shared `computeCoverage`, mirroring the docker/gcp/github peers. */ import { computeCoverage, overallPct, formatSummary, formatVerbose, checkThresholds, type CoverageReport, type CoverageThresholds } from "@intentius/chant/codegen/coverage"; export type { CoverageReport, CoverageThresholds }; export { computeCoverage, overallPct, formatSummary, formatVerbose, checkThresholds }; /** Run coverage analysis for the fly lexicon. */ export declare function analyzeFlyCoverage(opts?: { basePath?: string; verbose?: boolean; minOverall?: number; }): Promise; //# sourceMappingURL=coverage.d.ts.map