A single line within a diff segment

interface BitbucketDiffLine {
    destination?: number;
    line: string;
    source?: number;
    truncated: boolean;
}

Properties

destination?: number

Line number in the destination file

line: string

Line content

source?: number

Line number in the source file

truncated: boolean