UNPKG

devexpress-richedit

Version:

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

10 lines (9 loc) 518 B
import { UpdatedImageInfo } from '../../../manipulators/picture-manipulator/loader/updated-image-info'; import { SubDocumentChangeBase } from '../../change-base'; import { ModelChangeType } from '../../enums'; export declare class InlinePicturesUpdatedSubDocumentChange implements SubDocumentChangeBase { subDocumentId: number; updatedImageInfo: UpdatedImageInfo; readonly type = ModelChangeType.InlinePicturesUpdated; constructor(subDocumentId: number, updatedImageInfo: UpdatedImageInfo); }