“use strict”;
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ proto: [] } instanceof Array && function (d, b) { d.proto = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty§) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function () { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (.prototype = b.prototype, new __());
};
})();
exports.__esModule = true;
var BootstrapCommands_1 = require("./bootstrap/BootstrapCommands");
var BootstrapModels_1 = require("./bootstrap/BootstrapModels");
var BootstrapViews_1 = require("./bootstrap/BootstrapViews");
var StartupCommand = /** @class */ (function (_super) {
__extends(StartupCommand, _super);
function StartupCommand() {
return _super.call(this) || this;
}
StartupCommand.prototype.initializeMacroCommand = function () {
this.addSubCommand(BootstrapCommands_1[“default”]);
this.addSubCommand(BootstrapModels_1[“default”]);
this.addSubCommand(BootstrapViews_1[“default”]);
};
return StartupCommand;
}(puremvc.MacroCommand));
exports[“default”] = StartupCommand;