including dist files
This commit is contained in:
21
dist/domain/domain.js
vendored
Normal file
21
dist/domain/domain.js
vendored
Normal 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
|
||||
Reference in New Issue
Block a user