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