@robotlegsjs/core
Version:
An architecture-based IoC framework for JavaScript/TypeScript
30 lines • 1.18 kB
JavaScript
;
// ------------------------------------------------------------------------------
// Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
// ------------------------------------------------------------------------------
Object.defineProperty(exports, "__esModule", { value: true });
exports.NullCommandTrigger = void 0;
/**
* @private
*/
var NullCommandTrigger = /** @class */ (function () {
function NullCommandTrigger() {
}
/*============================================================================*/
/* Public Functions */
/*============================================================================*/
/**
* @private
*/
NullCommandTrigger.prototype.activate = function () { };
/**
* @private
*/
NullCommandTrigger.prototype.deactivate = function () { };
return NullCommandTrigger;
}());
exports.NullCommandTrigger = NullCommandTrigger;
//# sourceMappingURL=NullCommandTrigger.js.map