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