"use strict";
exports.__esModule = true;
exports.newRecord = newRecord;
function newRecord() {
return {
title: "",
file: "",
functions: {
found: 0,
hit: 0,
details: []
},
branches: {
found: 0,
hit: 0,
details: []
},
lines: {
found: 0,
hit: 0,
details: []
}
};
}