(command: string)
| 349 | } |
| 350 | |
| 351 | export function usageForCommand(command: string): string | null { |
| 352 | return buildCommandUsageText(normalizeCommandAlias(command)); |
| 353 | } |
| 354 | |
| 355 | function normalizeCommandAlias(command: string): string { |
| 356 | if (command === 'long-press') return 'longpress'; |
no test coverage detected