(message: string)
| 20 | |
| 21 | /** A step that's starting. */ |
| 22 | export function step(message: string): void { |
| 23 | write(` → ${message}`); |
| 24 | } |
| 25 | |
| 26 | /** A step that finished successfully. */ |
| 27 | export function done(message: string): void { |
no test coverage detected