UNPKG

@robotlegsjs/core

Version:

An architecture-based IoC framework for JavaScript/TypeScript

22 lines 800 B
"use strict"; // ------------------------------------------------------------------------------ // 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.Command = void 0; /** * Abstract command implementation * * <p>Please note: you do not have to extend this class. * Any class with an execute method can be used.</p> */ var Command = /** @class */ (function () { function Command() { } return Command; }()); exports.Command = Command; //# sourceMappingURL=Command.js.map