Home > @rushstack/ts-command-line > CommandLineIntegerParameter
CommandLineIntegerParameter class
The data type returned by CommandLineParameterProvider.defineIntegerParameter().
Signature:
export declare class CommandLineIntegerParameter extends CommandLineParameterWithArgument
Extends: CommandLineParameterWithArgument
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 CommandLineIntegerParameter
class.
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
defaultValue | readonly | number | undefined | The default value which will be used if the parameter is omitted from the command line. |
kind | readonly | CommandLineParameterKind | Indicates the type of parameter. |
value | readonly | number | undefined | Returns the argument value for an integer parameter that was parsed from the command line. |
Methods
Method | Modifiers | Description |
---|---|---|
appendToArgList(argList) | Append the parsed values to the provided string array. |