An open API service indexing awesome lists of open source software.

https://github.com/ccnokes/electron-spellchecker

Fork of electron-spellchecker that does not use any dependencies with GPL style licenses
https://github.com/ccnokes/electron-spellchecker

Last synced: 11 months ago
JSON representation

Fork of electron-spellchecker that does not use any dependencies with GPL style licenses

Awesome Lists containing this project

README

          

# electron-spellchecker

## Quick Start

```js
import { SpellCheckHandler, ContextMenuListener, ContextMenuBuilder } from '@ccnokes/electron-spellchecker';

const spellCheckHandler = new SpellCheckHandler();

const contextMenuBuilder = new ContextMenuBuilder(spellCheckHandler);
const contextMenuListener = new ContextMenuListener((info) => {
contextMenuBuilder.showPopupMenu(info);
});

spellCheckHandler.init();
```