| 20 | type EntryMode = 'single' | 'double' | 'none'; |
| 21 | |
| 22 | interface CliOptions { |
| 23 | session: string; |
| 24 | entry: EntryMode; |
| 25 | escape: boolean; |
| 26 | waitMs: number; |
| 27 | message: string; |
| 28 | } |
| 29 | |
| 30 | function usage(message?: string): never { |
| 31 | if (message) { |
nothing calls this directly
no outgoing calls
no test coverage detected