(self: HelpDoc.HelpDoc)
| 128 | |
| 129 | /** @internal */ |
| 130 | export const toAnsiDoc = (self: HelpDoc.HelpDoc): Doc.AnsiDoc => |
| 131 | Optimize.optimize(toAnsiDocInternal(self), Optimize.Deep) |
| 132 | |
| 133 | /** @internal */ |
| 134 | export const toAnsiText = (self: HelpDoc.HelpDoc): string => Doc.render(toAnsiDoc(self), { style: "pretty" }) |
no test coverage detected