UNPKG

devexpress-richedit

Version:

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

13 lines (12 loc) 616 B
import { ICommandOptions } from '../command-base'; import { SimpleCommandState } from '../command-states'; import { SelectionCommandBase } from './selection-command-base'; export declare class GoToNextWordCommandBase extends SelectionCommandBase { getStartPosition(): number; } export declare class GoToNextWordCommand extends GoToNextWordCommandBase { executeCore(_state: SimpleCommandState, _options: ICommandOptions): boolean; } export declare class ExtendGoToNextWordCommand extends GoToNextWordCommandBase { executeCore(_state: SimpleCommandState, _options: ICommandOptions): boolean; }