/** * Main module for parsing LCOV coverage files. * Provides functions to parse LCOV data from strings or files into JSON format. * @module lcov-parse */ import type { CoverageReport } from "./interfaces.js"; export * from "./interfaces.js"; export * from "./summary.js"; /** * Generate JSON report from lcov data * @param input * @returns */ export declare function parse(input: string): CoverageReport; /** * Load an lcov file from disk and parse it to JSON * @param file file path * @returns */ export declare function loadAndParse(file: string): Promise; //# sourceMappingURL=index.d.ts.map