interface ParseArgsConfig
Properties #
optional
#options: ParseArgsOptionsConfig | undefined
Used to describe arguments known to the parser.
Should an error be thrown when unknown arguments are encountered,
or when arguments are passed that do not match the type
configured in options
.
optional
#allowPositionals: boolean | undefined
Whether this command accepts positional arguments.
optional
#allowNegative: boolean | undefined
If true
, allows explicitly setting boolean options to false
by prefixing the option name with --no-
.