Interface SingleEditOperation

interface SingleEditOperation {
    forceMoveMarkers?: boolean;
    range: Range;
    text: null | string;
}

Properties

forceMoveMarkers?: boolean

This indicates that this operation has "insert" semantics. i.e. forceMoveMarkers = true => if range is collapsed, all markers at the position will be moved.

range: Range
text: null | string