(react: (pageWidth: PageWidth.PageWidth) => Doc.Doc<A>)
| 432 | |
| 433 | /** @internal */ |
| 434 | export const pageWidth = <A>(react: (pageWidth: PageWidth.PageWidth) => Doc.Doc<A>): Doc.Doc<A> => { |
| 435 | const op = Object.create(proto) |
| 436 | op._tag = "WithPageWidth" |
| 437 | op.react = react |
| 438 | return op |
| 439 | } |
| 440 | |
| 441 | // ----------------------------------------------------------------------------- |
| 442 | // Alignment |
no test coverage detected