devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
10 lines (9 loc) • 566 B
TypeScript
import { MisspelledInterval } from '../../spelling/intervals';
import { CommandSimpleOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
import { ChangeSpellingErrorCommandBase } from './change-spelling-error-command-base';
export declare class ChangeAllSpellingErrorsCommand extends ChangeSpellingErrorCommandBase {
isEnabled(): boolean;
protected isVisible(selectedMisspelledInterval: MisspelledInterval): boolean;
executeCore(state: SimpleCommandState, options: CommandSimpleOptions<string>): boolean;
}