(fn: CompletedFn)
| 8 | |
| 9 | /** Register a function to be called when the command completes. */ |
| 10 | export function registerCompletedFunction(fn: CompletedFn) { |
| 11 | completedFunctions.push(fn); |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Run the yargs process, as configured by the supplied function, calling a set of completion |
no test coverage detected