UNPKG

devexpress-richedit

Version:

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

14 lines (13 loc) 796 B
import { PictureSize } from '../../../floating-objects/sizes'; import { ModelManipulator } from '../../../manipulators/model-manipulator'; import { SubDocumentInterval } from '../../../sub-document'; import { IntervalBasedHistoryItem } from '../../base/interval-based-history-item'; import { HistoryItemIntervalState } from '../../states/history-item-state'; import { HistoryItemIntervalStateObject } from '../../states/history-item-state-object'; export declare class ChangeAnchoredPictureSizeHistoryItem extends IntervalBasedHistoryItem { oldState: HistoryItemIntervalState<HistoryItemIntervalStateObject>; size: PictureSize; constructor(modelManipulator: ModelManipulator, subDocInterval: SubDocumentInterval, size: PictureSize); redo(): void; undo(): void; }