devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 541 B
TypeScript
import { SpellChecker } from './spell-checker';
import { ISelectionChangesListener } from '../selection/i-selection-changes-listener';
import { Selection } from '../selection/selection';
export declare class SpellCheckerSelectionChangesListener implements ISelectionChangesListener {
private spellChecker;
private lastStartPosition;
private lastWordStartPosition;
private updBoxesTimerId;
constructor(spellChecker: SpellChecker);
dispose(): void;
NotifySelectionChanged(selection: Selection): void;
}