devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
14 lines (13 loc) • 666 B
TypeScript
import { FixedInterval } from '@devexpress/utils/lib/intervals/fixed';
import { ModelManipulator } from '../../../manipulators/model-manipulator';
import { SubDocument } from '../../../sub-document';
import { TableRow } from '../../../tables/main-structures/table-row';
import { TableBasedHistoryItem } from './create-table-history-item';
export declare class RemoveTableRowHistoryItem extends TableBasedHistoryItem {
rowIndex: number;
oldRow: TableRow;
cellIntervals: FixedInterval[];
constructor(modelManipulator: ModelManipulator, subDocument: SubDocument, tableIndex: number, rowIndex: number);
redo(): void;
undo(): void;
}