(nextStart, nextEnd)
| 213 | const getRange: ZoomState['getRange'] = () => ({ start, end }); |
| 214 | |
| 215 | const setRange: ZoomState['setRange'] = (nextStart, nextEnd) => { |
| 216 | applyNextRange(nextStart, nextEnd); |
| 217 | }; |
| 218 | |
| 219 | const setRangeAnchored: ZoomStateWithConstraints['setRangeAnchored'] = (nextStart, nextEnd, anchor) => { |
| 220 | applyNextRange(nextStart, nextEnd, { anchor: toAnchor(nextStart, nextEnd, anchor) }); |
nothing calls this directly
no test coverage detected