mdict-ts
v1.0.2
Published
mdict (*.mdx, *.mdd) file reader
Downloads
35
Maintainers
Readme
mdict-ts
mdict (*.mdx, *.mdd) file reader rewrite form mdict-js
Note:
Because of TextDecoder API , mdict-ts don't support IE and Edge , but you can use polyfill such as text-encoding
.
Installation:
npm i mdict-ts
Usage:
import {Mdict} from 'mdict-ts'
const mdict = new Mdict(file: File)
mdict.getWordList(query, offset?): Promise<Array<{ word: string, offset: number }>>
mdict.getDefinition(offset): Promise<string>