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) 652 B
import { CommandBase, ICommandOptions } from '../command-base'; import { SimpleCommandState } from '../command-states'; export declare class GoToNextWordCommandBase extends CommandBase<SimpleCommandState> { getState(): SimpleCommandState; getStartPosition(): number; isEnabledInReadOnlyMode(): boolean; } export declare class GoToNextWordCommand extends GoToNextWordCommandBase { executeCore(_state: SimpleCommandState, _options: ICommandOptions): boolean; } export declare class ExtendGoToNextWordCommand extends GoToNextWordCommandBase { executeCore(_state: SimpleCommandState, _options: ICommandOptions): boolean; }