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