Type alias OptionDefinition

OptionDefinition: CLIOption<any> | string

Type alias for a definition of a command-line option.

This can be either an instance of CLIOption or a string describing an option.

Example

Some examples of positional/flag options defined by strings: '{file name} | canonical name of the resource to create'

'--push -p {value} | the value to be pushed'

'--force -f | do a force push'