@ideascol/cli-maker
Version:
A simple library to help create CLIs
29 lines (28 loc) • 3.21 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getBuiltInSlashCommands = exports.renderMarkdown = exports.InteractiveSession = exports.hiddenPrompt = exports.getConfigValue = exports.getRawConfig = exports.loadSetupConfig = exports.createSetupCommand = exports.formatParameterTable = exports.createTable = exports.showInfo = exports.showWarning = exports.showError = exports.showSuccess = exports.ProgressBar = exports.ProgressIndicator = exports.stripAnsiCodes = exports.ParamType = exports.CLI = void 0;
var command_1 = require("./command/command");
Object.defineProperty(exports, "CLI", { enumerable: true, get: function () { return command_1.CLI; } });
var interfaces_1 = require("./interfaces");
Object.defineProperty(exports, "ParamType", { enumerable: true, get: function () { return interfaces_1.ParamType; } });
var common_1 = require("./common");
Object.defineProperty(exports, "stripAnsiCodes", { enumerable: true, get: function () { return common_1.stripAnsiCodes; } });
Object.defineProperty(exports, "ProgressIndicator", { enumerable: true, get: function () { return common_1.ProgressIndicator; } });
Object.defineProperty(exports, "ProgressBar", { enumerable: true, get: function () { return common_1.ProgressBar; } });
Object.defineProperty(exports, "showSuccess", { enumerable: true, get: function () { return common_1.showSuccess; } });
Object.defineProperty(exports, "showError", { enumerable: true, get: function () { return common_1.showError; } });
Object.defineProperty(exports, "showWarning", { enumerable: true, get: function () { return common_1.showWarning; } });
Object.defineProperty(exports, "showInfo", { enumerable: true, get: function () { return common_1.showInfo; } });
Object.defineProperty(exports, "createTable", { enumerable: true, get: function () { return common_1.createTable; } });
Object.defineProperty(exports, "formatParameterTable", { enumerable: true, get: function () { return common_1.formatParameterTable; } });
var setup_1 = require("./setup");
Object.defineProperty(exports, "createSetupCommand", { enumerable: true, get: function () { return setup_1.createSetupCommand; } });
Object.defineProperty(exports, "loadSetupConfig", { enumerable: true, get: function () { return setup_1.loadSetupConfig; } });
Object.defineProperty(exports, "getRawConfig", { enumerable: true, get: function () { return setup_1.getRawConfig; } });
Object.defineProperty(exports, "getConfigValue", { enumerable: true, get: function () { return setup_1.getConfigValue; } });
Object.defineProperty(exports, "prompt", { enumerable: true, get: function () { return setup_1.prompt; } });
Object.defineProperty(exports, "hiddenPrompt", { enumerable: true, get: function () { return setup_1.hiddenPrompt; } });
var index_1 = require("./session/index");
Object.defineProperty(exports, "InteractiveSession", { enumerable: true, get: function () { return index_1.InteractiveSession; } });
Object.defineProperty(exports, "renderMarkdown", { enumerable: true, get: function () { return index_1.renderMarkdown; } });
Object.defineProperty(exports, "getBuiltInSlashCommands", { enumerable: true, get: function () { return index_1.getBuiltInSlashCommands; } });