Home > @rushstack/ts-command-line > CommandLineChoiceListParameter
CommandLineChoiceListParameter class
The data type returned by CommandLineParameterProvider.defineChoiceListParameter().
Signature:
export declare class CommandLineChoiceListParameter extends CommandLineParameter
Extends: CommandLineParameter
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 CommandLineChoiceListParameter class.
Properties
| Property | Modifiers | Type | Description |
|---|---|---|---|
| alternatives | readonly | ReadonlyArray<string> | A list of strings (which contain no spaces), of possible options which can be selected |
| completions | readonly | (() => Promise<string[]>) | undefined | An optional callback that provides a list of custom choices for tab completion. |
| kind | readonly | CommandLineParameterKind | Indicates the type of parameter. |
| values | readonly | ReadonlyArray<string> | Returns the string arguments for a choice list parameter that was parsed from the command line. |
Methods
| Method | Modifiers | Description |
|---|---|---|
| appendToArgList(argList) | Append the parsed values to the provided string array. |