Rush StackShopBlogEvents
Skip to main content

Home > @rushstack/ts-command-line > CommandLineIntegerListParameter

CommandLineIntegerListParameter class

The data type returned by CommandLineParameterProvider.defineIntegerListParameter().

Signature:

export declare class CommandLineIntegerListParameter 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 CommandLineIntegerListParameter class.

Properties

PropertyModifiersTypeDescription
kindreadonlyCommandLineParameterKindIndicates the type of parameter.
valuesreadonlyReadonlyArray<number>Returns the integer arguments for an integer list parameter that was parsed from the command line.

Methods

MethodModifiersDescription
appendToArgList(argList)Append the parsed values to the provided string array.