@ideascol/cli-maker
Version:
A simple library to help create CLIs
16 lines (15 loc) • 509 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 || (exports.ParamType = ParamType = {}));