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