kui-shell
Version:
This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool
14 lines • 561 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var ExecType;
(function (ExecType) {
ExecType[ExecType["TopLevel"] = 0] = "TopLevel";
ExecType[ExecType["ClickHandler"] = 1] = "ClickHandler";
ExecType[ExecType["Nested"] = 2] = "Nested";
})(ExecType = exports.ExecType || (exports.ExecType = {}));
function isCommandHandlerWithEvents(evaluator) {
const handler = evaluator;
return handler.options !== undefined;
}
exports.isCommandHandlerWithEvents = isCommandHandlerWithEvents;
//# sourceMappingURL=command.js.map