Interface IModelContentChange

interface IModelContentChange {
    range: IRange;
    rangeLength: number;
    rangeOffset: number;
    text: string;
}

Properties

range: IRange

The range that got replaced.

rangeLength: number

The length of the range that got replaced.

rangeOffset: number

The offset of the range that got replaced.

text: string

The new text for the range.