devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
9 lines (8 loc) • 487 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 IgnoreAllSpellingErrorsCommand extends SpellingCommandBase {
protected isVisible(selectedMisspelledInterval: MisspelledInterval): boolean;
executeCore(state: SimpleCommandState, _options: ICommandOptions): boolean;
}