Ace API Reference
    Preparing search index...

    Interface Delta

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

    Properties

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