ElectronProvider.spellCheck method
ElectronProvider › spellCheck
Unofficial
Runs spell checking asynchronously on an array of individual words and reports the misspelt ones.Signature:
spellCheck(words: string[], callback: (misspeltWords: string[]) => void): voidParameters:
| Parameter | Type | Description |
|---|---|---|
| words | string[] | The words to spell check. |
| callback | (misspeltWords: string[]) => void | Called with the array of misspelt words when spell checking completes. |
Returns: void