interface Delta {
    action: "insert" | "remove";
    end: Point;
    folds?: Fold[];
    id?: number;
    lines: string[];
    start: Point;
}

Properties

action: "insert" | "remove"
end: Point
folds?: Fold[]
id?: number
lines: string[]
start: Point