mirror of
https://github.com/anthropics/claude-code.git
synced 2026-09-14 19:48:39 +08:00
5 lines
160 B
TypeScript
5 lines
160 B
TypeScript
/**
|
|
* What the pane lists: the repository's diff now, or one past turn's edits.
|
|
*/
|
|
export type Source = { kind: 'current' } | { kind: 'turn'; index: number }
|