10 lines
382 B
JavaScript
10 lines
382 B
JavaScript
/**
|
|
* @file 词典模块入口
|
|
* @description 导出词典基类、管理器和具体实现
|
|
*/
|
|
|
|
export { DictionaryBase, createResult, createMeaning, createExample } from './base.js';
|
|
export { DictionaryManager, dictionaryManager } from './manager.js';
|
|
export { BingDictionary, bingDictionary } from './bing.js';
|
|
export { YoudaoDictionary, youdaoDictionary } from './youdao.js';
|