()
| 63 | } |
| 64 | |
| 65 | export function createSelectionState(): SelectionState { |
| 66 | return { |
| 67 | anchor: null, |
| 68 | focus: null, |
| 69 | isDragging: false, |
| 70 | anchorSpan: null, |
| 71 | scrolledOffAbove: [], |
| 72 | scrolledOffBelow: [], |
| 73 | scrolledOffAboveSW: [], |
| 74 | scrolledOffBelowSW: [], |
| 75 | lastPressHadAlt: false, |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | export function startSelection( |
| 80 | s: SelectionState, |