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