Jarosław Konik
Jarosław Konik
Seems like using `.action(ArgAction::Help)` on clap command builder cancels command conflict validation set with `.exclusive(true)`. Probably should be fixed upstream.
I've reimplemented the behaviour using argument count instead of `exclusive` flag as suggested
I've expanded the PR description a bit. If more information is needed please let me know what should I change/add.
@oczekrb ```lmbconsuminfunction = (lmb: fun): void => {}``` means that `lmbconsuminfunction` takes an argument of a type function that takes two parameters of type number and returns type void ```lmbconsuminfunction2...