@ideascol/cli-maker
Version:
A simple library to help create CLIs
19 lines (18 loc) • 679 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ParamType = void 0;
var ParamType;
(function (ParamType) {
ParamType["Text"] = "text";
ParamType["Number"] = "number";
ParamType["Custom"] = "custom";
ParamType["List"] = "list";
ParamType["Boolean"] = "boolean";
ParamType["Email"] = "email";
ParamType["Phone"] = "phone";
ParamType["Url"] = "url";
ParamType["Package"] = "Package";
ParamType["Password"] = "password";
/** Repeated entries. Each item is itself a set of params (see CommandParam.itemParams). */
ParamType["Array"] = "array";
})(ParamType || (exports.ParamType = ParamType = {}));