(value: string)
| 11 | const HELP_FLAGS = new Set(['--help', '-h', 'help']) |
| 12 | |
| 13 | function text(value: string): { type: 'text'; value: string } { |
| 14 | return { type: 'text', value } |
| 15 | } |
| 16 | |
| 17 | function usage(): string { |
| 18 | return ['Usage:', ' /summary', ' /summary --help'].join('\n') |