UNPKG

devexpress-richedit

Version:

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

20 lines (16 loc) 573 B
/** * DevExpress WebRichEdit (nspell-index.js) * Version: 24.2.6 * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs */ import * as nspellImport from 'nspell'; import enAff from 'dictionary-en/index.aff'; import enDic from 'dictionary-en/index.dic'; // import frAff from 'dictionary-fr/index.aff'; // import frDic from 'dictionary-fr/index.dic'; export const nspell = nspellImport; export const dictionaries = [ { aff: enAff, dic: enDic }, //{ aff: frAff, dic: frDic } ];