devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
15 lines (14 loc) • 915 B
TypeScript
import { HistoryItemState } from '../../../history/states/history-item-state';
import { HistoryItemTableRowStateObject } from '../../../history/states/history-item-state-object';
import { JSONServerTableRowProperty } from '../../../json/enums/table/json-table-row-enums';
import { SubDocument } from '../../../sub-document';
import { SubDocumentChangeBase } from '../../change-base';
import { ModelChangeType } from '../../enums';
export declare class TableRowPropertyChangedSubDocumentChange implements SubDocumentChangeBase {
subDocument: SubDocument;
property: JSONServerTableRowProperty;
newState: HistoryItemState<HistoryItemTableRowStateObject>;
readonly type = ModelChangeType.TableRowPropertyChanged;
get subDocumentId(): number;
constructor(subDocument: SubDocument, property: JSONServerTableRowProperty, newState: HistoryItemState<HistoryItemTableRowStateObject>);
}