UNPKG

devexpress-richedit

Version:

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

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