CliHelper - is a function that takes CLI declaration and returns data user inputed
Exiter - is a function that handles premature exit from program.
It will be fired when user inputs invalid data or
asked for help with --help flag.
It is process.exit(...) by default
Writer - is a function to be called by typed-cli
when it reports invalid data or printing help.
For the most cases console.log works fine.
Creates a CliHelper.
cli(...) - is an example for CliHelper
helper configuration
Generated using TypeDoc
ArgvProvider - is a function to return argv. It is
() => process.argvby default.