A hunk (contiguous changed region) within a file diff

interface BitbucketDiffHunk {
    destinationLine: number;
    destinationSpan: number;
    segments: BitbucketDiffSegment[];
    sourceLine: number;
    sourceSpan: number;
    truncated: boolean;
}

Properties

destinationLine: number
destinationSpan: number
sourceLine: number
sourceSpan: number
truncated: boolean