simple-command-bus
Version:
Simple Command Bus
14 lines (10 loc) • 337 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var Command = function Command() {
_classCallCheck(this, Command);
};
exports.default = Command;
;