Rush StackShopBlogEvents
Skip to main content

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

CommandLineRemainder class

The data type returned by CommandLineParameterProvider.defineCommandLineRemainder().

Signature:

export declare class CommandLineRemainder 

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 CommandLineRemainder class.

Properties

Property

Modifiers

Type

Description

description

readonly

string

Documentation for the parameter that will be shown when invoking the tool with "--help"

values

readonly

ReadonlyArray<string>

Returns any remaining command line arguments after the recognized portion that was parsed from the command line.

Methods

Method

Modifiers

Description

appendToArgList(argList)

Append the parsed values to the provided string array.