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