UNPKG

@code-pushup/coverage-plugin

Version:
13 lines (12 loc) 331 B
import type { Issue } from '@code-pushup/models'; import type { CoverageType } from '../../config.js'; export type LCOVStat = { totalFound: number; totalHit: number; issues: Issue[]; }; export type LCOVStats = Partial<Record<CoverageType, LCOVStat>>; export type NumberRange = { start: number; end?: number; };