interface Delta {
    action: "insert" | "remove";
    end: Ace.Point;
    lines: string[];
    start: Ace.Point;
}

Properties

Properties

action: "insert" | "remove"
end: Ace.Point
lines: string[]
start: Ace.Point

Generated using TypeDoc