import type { LineData } from "./LineData.js"; /** * Provides the coverage data of lines. */ export declare class LineCoverage { /** * The coverage data. */ data: LineData[]; /** * The number of lines found. */ found: number; /** * The number of lines hit. */ hit: number; /** * Creates a new line coverage. * @param options An object providing values to initialize this instance. */ constructor(options?: LineCoverageOptions); /** * Returns a string representation of this object. * @returns The string representation of this object. */ toString(): string; } /** * Defines the options of a {@link LineCoverage} instance. */ export type LineCoverageOptions = Partial>; //# sourceMappingURL=LineCoverage.d.ts.map