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) 359 B
import { ModelChangeType } from '../../enums'; export class TableRowRemovedSubDocumentChange { subDocumentId; table; rowIndex; type = ModelChangeType.TableRowRemoved; constructor(subDocumentId, table, rowIndex) { this.subDocumentId = subDocumentId; this.table = table; this.rowIndex = rowIndex; } }