* Like a ChangeObject, but with no value and an extra `previousComponent` property. * A linked list of these (linked via `.previousComponent`) is used internally in the code below to * keep track of the state of the diffing algorithm, but gets converted to an array of * ChangeObjects before being
| 7 | * ChangeObjects before being returned to the caller. |
| 8 | */ |
| 9 | interface DraftChangeObject { |
| 10 | added: boolean; |
| 11 | removed: boolean; |
| 12 | count: number; |
| 13 | previousComponent?: DraftChangeObject; |
| 14 | |
| 15 | // Only added in buildValues: |
| 16 | value?: any; |
| 17 | } |
| 18 | |
| 19 | interface Path { |
| 20 | oldPos: number; |
nothing calls this directly
no outgoing calls
no test coverage detected