UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

19 lines (18 loc) 589 B
export declare class SpellCheckerError { interval: { start: number; length: number; }; suggestions: string[]; } export declare class SpellCheckerSettings { isEnabled: boolean; customDictionaryGuid: string; canAddWord: boolean; suggestionCount: number; maxRequestLength: number; checkWordSpelling?: (word: string, callback: (isCorrect: boolean, suggestions: string[]) => void) => void; addWordToDictionary?: (word: string) => void; copyFrom(obj: SpellCheckerSettings): void; clone(): SpellCheckerSettings; }