gluegun
Version:
A delightful toolkit for building Node-powered CLIs.
23 lines • 572 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Plugin = void 0;
/**
* 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