| 14 | |
| 15 | declare module "@tiptap/core" { |
| 16 | interface Commands<ReturnType> { |
| 17 | customKeymap: { |
| 18 | /** |
| 19 | * Select text between node boundaries |
| 20 | */ |
| 21 | selectTextWithinNodeBoundaries: () => ReturnType; |
| 22 | }; |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | function collectRanges(transactions: readonly Transaction[]): Array<number> { |
nothing calls this directly
no outgoing calls
no test coverage detected