| 2 | import type Composition from '../fixtures/Composition.js'; |
| 3 | |
| 4 | interface Op { |
| 5 | insert?: string | Record<string, unknown>; |
| 6 | delete?: number; |
| 7 | retain?: number | Record<string, unknown>; |
| 8 | attributes?: Record<string, unknown>; |
| 9 | } |
| 10 | |
| 11 | const getTextNodeDef = [ |
| 12 | 'el', |
nothing calls this directly
no outgoing calls
no test coverage detected