UNPKG

devexpress-richedit

Version:

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

11 lines (10 loc) 462 B
import { Table } from '../../../tables/main-structures/table'; import { SubDocumentChangeBase } from '../../change-base'; import { ModelChangeType } from '../../enums'; export declare class TableRowRemovedSubDocumentChange implements SubDocumentChangeBase { subDocumentId: number; table: Table; rowIndex: number; readonly type = ModelChangeType.TableRowRemoved; constructor(subDocumentId: number, table: Table, rowIndex: number); }