Home > @rushstack/ts-command-line > CommandLineParameterBase
CommandLineParameterBase class
The base class for the various command-line parameter types.
Signature:
export declare abstract class CommandLineParameterBase
Remarks
The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the CommandLineParameterBase class.
Properties
Property | Modifiers | Type | Description |
|---|---|---|---|
| boolean | undefined | Allows for the use of environment variable names that do not conform to the standard described by the Shell and Utilities volume of IEEE Std 1003.1-2001. This disables the validation that is performed on the provided IBaseCommandLineDefinition.environmentVariable value by default. | |
| string | Documentation for the parameter that will be shown when invoking the tool with "--help" | |
| string | undefined | The name of an environment variable that the parameter value will be read from, if it was omitted from the command-line. An error will be reported if the environment value cannot be parsed. | |
| Indicates the type of parameter. | ||
| string | The long name of the flag including double dashes, e.g. "--do-something" | |
| string | typeof SCOPING_PARAMETER_GROUP | undefined | An optional parameter group name, shown when invoking the tool with "--help" | |
| string | undefined | An optional parameter scope name, used to add a scope-prefixed parameter synonym, e.g. "--scope:do-something". Scopes provide additional flexibility for parameters in conflict resolution since when a scope is specified, parameters that have conflicting long names will be defined using only the scope-prefixed name. | |
| boolean | If true, then an error occurs if the parameter was not included on the command-line. | |
| string | undefined | If a parameterScope is provided, returns the scope-prefixed long name of the flag, including double dashes, eg. "--scope:do-something". Otherwise undefined. | |
| string | undefined | An optional short name for the flag including the dash, e.g. "-d" | |
| string[] | undefined | Specifies additional names for this parameter that are accepted but not displayed in the command line help. |
Methods
Method | Modifiers | Description |
|---|---|---|
| Append the parsed values to the provided string array. | |
| Internal usage only. Used to report unexpected output from the argparse library. | |
|