(s: string)
| 34 | } |
| 35 | |
| 36 | const bold = (s: string): string => wrap('\x1b[1m', s) |
| 37 | const dim = (s: string): string => wrap('\x1b[2m', s) |
| 38 | const italic = (s: string): string => wrap('\x1b[3m', s) |
| 39 | const cyan = (s: string): string => wrap('\x1b[36m', s) |
no test coverage detected