/** * Provides details for branch coverage. */ export declare class BranchData { /** * The block number. */ blockNumber: number; /** * The branch number. */ branchNumber: number; /** * The line number. */ lineNumber: number; /** * A number indicating how often this branch was taken. */ taken: number; /** * Creates new branch data. * @param options An object providing values to initialize this instance. */ constructor(options?: BranchDataOptions); /** * Returns a string representation of this object. * @returns The string representation of this object. */ toString(): string; } /** * Defines the options of a {@link BranchData} instance. */ export type BranchDataOptions = Partial>; //# sourceMappingURL=BranchData.d.ts.map