/** * A single diff hunk within a file change */ export interface SalesforceDiffHunk { /** * Hunk header (e.g. "@@ -10,8 +10,15 @@") */ header?: string; /** * Diff lines with context/add/remove prefixes */ lines?: string[]; /** * Number of lines in the new file */ newLines?: number; /** * Start line in the new file */ newStart?: number; /** * Number of lines in the old file */ oldLines?: number; /** * Start line in the old file */ oldStart?: number; }