simple-command-bus
Version:
Simple Command Bus
17 lines (13 loc) • 407 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
/**
* Abstract class for a command
*/
var Command = function Command() {
_classCallCheck(this, Command);
};
exports["default"] = Command;