Function
availablePerLine
(
lineWidth: number,
ribbonFraction: number
)
Source from the content-addressed store, hash-verified
| 69 | |
| 70 | /** @internal */ |
| 71 | export const availablePerLine = ( |
| 72 | lineWidth: number, |
| 73 | ribbonFraction: number |
| 74 | ): PageWidth.PageWidth => { |
| 75 | const op = Object.create(proto) |
| 76 | op._tag = "AvailablePerLine" |
| 77 | op.lineWidth = lineWidth |
| 78 | op.ribbonFraction = ribbonFraction |
| 79 | return op |
| 80 | } |
| 81 | |
| 82 | /** @internal */ |
| 83 | export const unbounded: PageWidth.PageWidth = (() => { |
Tested by
no test coverage detected