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