mirror of
https://github.com/anthropics/claude-code.git
synced 2026-09-14 19:48:39 +08:00
13 lines
321 B
TypeScript
13 lines
321 B
TypeScript
import type Types from '../../../types'
|
|
|
|
/**
|
|
* What a tier decided about its diff besides the rows: what it compares,
|
|
* the ref the hunks read against, whether HEAD is unborn, stale bodies.
|
|
*/
|
|
export type DiffBasis = {
|
|
source: Types.DiffSource
|
|
baseRef: string
|
|
isUnborn: boolean
|
|
stalePaths: readonly string[]
|
|
}
|