Interface IValidEditOperation

interface IValidEditOperation {
    range: Range;
    text: string;
}

Properties§

§range: Range

The range to replace. This can be empty to emulate a simple insert.

§text: string

The text to replace with. This can be empty to emulate a simple delete.