including dist files

This commit is contained in:
2019-03-14 21:09:30 +01:00
parent 58ed4fc0ce
commit 44838bb380
39 changed files with 325 additions and 5 deletions

21
dist/domain/domain.js vendored Normal file
View File

@@ -0,0 +1,21 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Domain = /** @class */ (function () {
function Domain() {
}
Domain.prototype.resolve = function (name) {
return this.portResolver.resolve(name);
};
Domain.prototype.setResolver = function (portResolver) {
this.portResolver = portResolver;
};
Object.defineProperty(Domain.prototype, "musicCatalog", {
get: function () { return this.resolve('IMusicCatalog'); },
enumerable: true,
configurable: true
});
return Domain;
}());
var domain = new Domain();
exports.default = domain;
//# sourceMappingURL=domain.js.map