"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Extends the environment with new commands. */ var Plugin = /** @class */ (function () { function Plugin() { this.name = null; this.description = null; this.defaults = {}; this.directory = null; this.hidden = false; /** * A list of commands. */ this.commands = []; this.extensions = []; } return Plugin; }()); exports.Plugin = Plugin; //# sourceMappingURL=plugin.js.map