/** * Provides details for function coverage. */ export declare class FunctionData { /** * The execution count. */ executionCount: number; /** * The function name. */ functionName: string; /** * The line number of the function start. */ lineNumber: number; /** * Creates new function data. * @param options An object providing values to initialize this instance. */ constructor(options?: FunctionDataOptions); /** * Returns a string representation of this object. * @returns The string representation of this object. */ toString(): string; } /** * Defines the options of a {@link FunctionData} instance. */ export type FunctionDataOptions = Partial>; //# sourceMappingURL=FunctionData.d.ts.map