Interface IModelContentChange

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

Properties§

§readonly range: IRange

The old range that got replaced.

§readonly rangeLength: number

The length of the range that got replaced.

§readonly rangeOffset: number

The offset of the range that got replaced.

§readonly text: string

The new text for the range.