japanese-db
Version:
Generate Japanese dictionary SQLite database from open source materials
26 lines (22 loc) • 701 B
text/typescript
/* Copyright (c) 2020 Ezzat Chamudi
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
import { JMdictUtil } from './JMdictUtil';
import { JMnedictUtil } from './JMnedictUtil';
import { KanjidicUtil } from './KanjidicUtil';
import { JapaneseDBTool } from './JapaneseDBTool';
import * as JMdict from './types/jmdict';
import * as JMnedict from './types/jmnedict';
import * as JapaneseDB from './types/japanesedb';
export {
JMdictUtil,
JMnedictUtil,
KanjidicUtil,
JapaneseDBTool,
JMdict,
JMnedict,
JapaneseDB,
};