Return option name, in a camelcase format that can be used as a object attribute key.
Only allow option value to be one of choices.
Add option name(s) that conflict with this option. An error will be displayed if conflicting options are found during parsing.
Set the default value, and optionally supply the description to be displayed in the help.
Set environment variable to check for option value. Priority order of option values is default < env < cli
Calculate the full description, including defaultValue etc.
Hide option in help.
Specify implied option values for when this option is set and the implied options are not.
The custom processing (parseArg) is not called on the implied values.
Return whether a boolean option.
Options are one of boolean, negated, required argument, or optional argument.
Whether the option is mandatory and must have a value after parsing.
Return option name.
Preset to use when option used without option-argument, especially optional but also boolean and negated. The custom processing (parseArg) is called.
Generated using TypeDoc
Set the custom handler for processing CLI option arguments into option values.