(text: string)
| 167 | |
| 168 | /** @internal */ |
| 169 | export const text = (text: string): Doc.Doc<never> => { |
| 170 | const op = Object.create(proto) |
| 171 | op._tag = "Text" |
| 172 | op.text = text |
| 173 | return op |
| 174 | } |
| 175 | |
| 176 | /** @internal */ |
| 177 | export const flatAlt = dual< |
no test coverage detected