| 23 | } |
| 24 | |
| 25 | interface BlockDiff { |
| 26 | id: string |
| 27 | type: string |
| 28 | status: 'added' | 'removed' | 'modified' | 'unchanged' |
| 29 | contentDiff?: { |
| 30 | before: string | undefined |
| 31 | after: string | undefined |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | type ChangedNotebookDiff = NotebookDiff & { status: 'added' | 'removed' | 'modified' } |
| 36 | type ChangedBlockDiff = BlockDiff & { status: 'added' | 'removed' | 'modified' } |
nothing calls this directly
no outgoing calls
no test coverage detected