interface MultiSelectionEvents {
    addRange: (e: { range: Range }) => void;
    changeCursor: () => void;
    changeSelection: () => void;
    multiSelect: () => void;
    removeRange: (e: { ranges: Range[] }) => void;
    singleSelect: () => void;
}

Hierarchy (View Summary)

Properties

addRange: (e: { range: Range }) => void
changeCursor: () => void

Emitted when the cursor position changes.

changeSelection: () => void

Emitted when the cursor selection changes.

multiSelect: () => void
removeRange: (e: { ranges: Range[] }) => void
singleSelect: () => void