| 38 | export { InvalidArgumentError as InvalidOptionArgumentError }; // deprecated old name |
| 39 | |
| 40 | export interface ErrorOptions { |
| 41 | // optional parameter for error() |
| 42 | /** an id string representing the error */ |
| 43 | code?: string; |
| 44 | /** suggested exit code which could be used with process.exit */ |
| 45 | exitCode?: number; |
| 46 | } |
| 47 | |
| 48 | export class Argument { |
| 49 | description: string; |
nothing calls this directly
no outgoing calls
no test coverage detected