Skip to content

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): void

Parameters:

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