devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
10 lines (9 loc) • 503 B
TypeScript
import { MisspelledInterval } from '../../spelling/intervals';
import { ICommandOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
import { SpellingCommandBase } from './spelling-command-base';
export declare class AddWordToDictionary extends SpellingCommandBase {
isEnabled(): boolean;
protected isVisible(selectedMisspelledInterval: MisspelledInterval): boolean;
executeCore(state: SimpleCommandState, _options: ICommandOptions): boolean;
}