| 2 | import { Editor, Operation, Range } from '@editablejs/models' |
| 3 | |
| 4 | interface Batch { |
| 5 | operations: Operation[] |
| 6 | selectionBefore: Range | null |
| 7 | } |
| 8 | |
| 9 | const HISTORY_STACK = new WeakMap<Editor, HistoryStack>() |
| 10 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…