* Renders the given text as progress text. * @param message Progress text to render.
(message: string)
| 69 | * @param message Progress text to render. |
| 70 | */ |
| 71 | public static progress(message: string): string { |
| 72 | return `\x1b[90m${message}\x1b[0m`; |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Renders the given text as a title. |