Type Alias NArgs

NArgs: number | "?" | "*" | "+"

The type of nargs. It can be a number, or one of the following symbols:

  • ?: The argument is optional.
  • *: The argument is optional and can appear multiple times.
  • +: The argument is required and can appear multiple times.