UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

10 lines (9 loc) 338 B
import { ModelChangeType } from '../../enums'; export class AnchorObjectRemovedSubDocumentChange { constructor(subDocumentId, objectId, position) { this.subDocumentId = subDocumentId; this.objectId = objectId; this.position = position; this.type = ModelChangeType.AnchorObjectRemoved; } }