| 40 | } |
| 41 | |
| 42 | interface DiffResult { |
| 43 | file1: string |
| 44 | file2: string |
| 45 | notebooks: NotebookDiff[] |
| 46 | summary: { |
| 47 | notebooksAdded: number |
| 48 | notebooksRemoved: number |
| 49 | notebooksModified: number |
| 50 | notebooksUnchanged: number |
| 51 | blocksAdded: number |
| 52 | blocksRemoved: number |
| 53 | blocksModified: number |
| 54 | blocksUnchanged: number |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | export function createDiffAction( |
| 59 | _program: Command |
nothing calls this directly
no outgoing calls
no test coverage detected