(e: never)
| 230 | } |
| 231 | |
| 232 | function neverLogEventError(e: never) { |
| 233 | return new Error(`Unknown log event type: ${(e as LogEvent).type}`); |
| 234 | } |
| 235 | |
| 236 | // foreground 38;2;<r>;<g>;<b> (https://stackoverflow.com/questions/4842424/list-of-ansi-color-escape-sequences) |
| 237 | const red = '38;2;143;99;79'; |
no outgoing calls
no test coverage detected