( args: string[], stdinIsTTY: boolean | undefined, )
| 20 | } |
| 21 | |
| 22 | export function isInteractiveNoArgInvocation( |
| 23 | args: string[], |
| 24 | stdinIsTTY: boolean | undefined, |
| 25 | ): boolean { |
| 26 | return args.length === 0 && stdinIsTTY === true; |
| 27 | } |
| 28 | |
| 29 | export function formatTopLevelHelp(): string { |
| 30 | return [ |
no outgoing calls
no test coverage detected