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) 405 B
import { ManipulatorHandlerBase } from './manipulator-handler-base'; export declare abstract class ManipulatorHandlerStateBase<HandlerT extends ManipulatorHandlerBase<ManipulatorHandlerStateBase<HandlerT>>> { start(): void; finish(): void; handler: HandlerT; constructor(handler: HandlerT); dispose(): void; protected resizeRotationChecker(action: () => void): boolean; }