UNPKG

japanese-db

Version:

Generate Japanese dictionary SQLite database from open source materials

13 lines (12 loc) 409 B
export class JapaneseDBTool { /** * @param {Object<string, string>} sources * @param {string} targetPath * @returns {Promise<void>} */ static buildSqlite(sources: { [x: string]: string; }, targetPath: string): Promise<void>; } export type DictIndexRow = import("./types/japanesedb").DictIndexRow; export type KanjiAliveRow = import("./types/japanesedb").KanjiAliveRow;