(indentation: number)
| 148 | |
| 149 | /** @internal */ |
| 150 | export const line = <A>(indentation: number): DocTree.DocTree<A> => { |
| 151 | const op = Object.create(proto) |
| 152 | op._tag = "LineTree" |
| 153 | op.indentation = indentation |
| 154 | return op |
| 155 | } |
| 156 | |
| 157 | /** @internal */ |
| 158 | export const annotation = dual< |
no test coverage detected