Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ICommandParserConfig

Config for a command parser instance.

Hierarchy

  • ICommandParserConfig

Index

Properties

allowTooManyArgs?: boolean

Should too many arguments be allowed or not?

caseSensitive?: boolean

Are commands case sensitive?

commandList?: null | Map<string, ICommand>

A dictionary with all existing commands.

commandPrefix?: string

A command prefix that will be considered by this parser.

flagSuffix?: string

A suffix for all flags that will be considered by this parser.

fullFlagPrefix?: string

A prefix for all full flags that will be considered by this parser.

shortFlagPrefix?: string

A prefix for all shortened flags that will be considered by this parser.

throwError?: boolean

Whether to throw error while parsing or not.