| 17 | type Doc = string | Doc[] | DocCommand; |
| 18 | |
| 19 | interface Align { |
| 20 | type: "align"; |
| 21 | contents: Doc; |
| 22 | n: number | string | { type: "root" }; |
| 23 | } |
| 24 | |
| 25 | interface BreakParent { |
| 26 | type: "break-parent"; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…