morning-builds-core
Version:
Core functionality for Morning Builds
13 lines • 460 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var statistics_1 = require("./statistics");
var execution_1 = require("./execution");
var Store = /** @class */ (function () {
function Store(firebaseCrud) {
this.statistics = new statistics_1.Statistics(firebaseCrud);
this.execution = new execution_1.Execution(firebaseCrud);
}
return Store;
}());
exports.Store = Store;
//# sourceMappingURL=index.js.map