gatelineAPI reference
interface DiffLine {
    kind: "context" | "add" | "del" | "meta";
    newNo: null | number;
    oldNo: null | number;
    text: string;
}

Properties

Properties

kind: "context" | "add" | "del" | "meta"
newNo: null | number
oldNo: null | number
text: string