(line: string)
| 723 | |
| 724 | const annotateLine = (line: string): string => Ansi.annotate(line, Ansi.bold) |
| 725 | const annotateErrorLine = (line: string): string => Ansi.annotate(line, Ansi.combine(Ansi.italicized, Ansi.red)) |
| 726 | |
| 727 | /** |
| 728 | * Creates a confirmation prompt that asks the user to choose a boolean yes/no |
no test coverage detected