* Writes a normal information message. * * This is the default type you should use. * * @param message The message to show.
(message: string)
| 156 | * @param message The message to show. |
| 157 | */ |
| 158 | function info(message: string): void { |
| 159 | console.log(colors.info(message)) |
| 160 | } |
| 161 | |
| 162 | /** |
| 163 | * Writes an error message. |