exportinterfaceMutantCoverage {
static: CoverageData;
perTest: CoveragePerTestId;
}
exporttypeCoveragePerTestId = Record<string, CoverageData>;
/**
* Keys are mutant ids, the numbers are the amount of times it was hit.
*/exporttypeCoverageData = Record<string, number>;