devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 361 B
JavaScript
import { ModelChangeType } from '../../enums';
export class TableRowInsertedSubDocumentChange {
subDocumentId;
table;
rowIndex;
type = ModelChangeType.TableRowInserted;
constructor(subDocumentId, table, rowIndex) {
this.subDocumentId = subDocumentId;
this.table = table;
this.rowIndex = rowIndex;
}
}