File size: 160 Bytes
776286d | 1 2 3 4 5 | /**
* What the pane lists: the repository's diff now, or one past turn's edits.
*/
export type Source = { kind: 'current' } | { kind: 'turn'; index: number }
|
776286d | 1 2 3 4 5 | /**
* What the pane lists: the repository's diff now, or one past turn's edits.
*/
export type Source = { kind: 'current' } | { kind: 'turn'; index: number }
|