devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 383 B
JavaScript
import { ModelChangeType } from '../../enums';
export class IntervalRemovedSubDocumentChange {
subDocumentId;
interval;
removedText;
type = ModelChangeType.IntervalRemoved;
constructor(subDocumentId, interval, removedText) {
this.subDocumentId = subDocumentId;
this.interval = interval;
this.removedText = removedText;
}
}