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