MCPcopy Create free account
hub / github.com/deepnote/deepnote / BlockDiff

Interface BlockDiff

packages/cli/src/commands/diff.ts:25–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23}
24
25interface 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
35type ChangedNotebookDiff = NotebookDiff & { status: 'added' | 'removed' | 'modified' }
36type ChangedBlockDiff = BlockDiff & { status: 'added' | 'removed' | 'modified' }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected