@riskmgmt/forerunnerdb
Version:
Forerunnerdb Angular 5 injectable service
15 lines (14 loc) • 365 B
JavaScript
var Example = /** @class */ (function () {
function Example() {
this.covered = false;
}
/* Some code in here :) */
/* Some code in here :) */
Example.prototype.coverageTest = /* Some code in here :) */
function () {
/* Should be uncovered. */
this.covered = true;
};
return Example;
}());
export { Example };