Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IOptionParserConfig

Config for an argument parser instance.

Hierarchy

  • IOptionParserConfig

Index

Properties

allowTooManyArgs?: boolean

Should too many arguments be allowed or not?

args?: IOption<InputData>[]

Array of all args of target commands.

caseSensitive?: boolean

Are option names case sensitive?

flags?: IFlag<InputData>[]

Array of all flags of target commands.

fullPrefix?: string

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

separator?: string

A trimmable custom option key/value separator that will be considered by this parser.

shortPrefix?: string

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

suffix?: string

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

throwError?: boolean

Whether to throw error while parsing or not.