mirror of
https://github.com/hellodigua/ChatLab.git
synced 2026-05-13 09:41:01 +08:00
33 lines
649 B
TypeScript
33 lines
649 B
TypeScript
/**
|
|
* Worker 模块入口
|
|
* 导出 Worker 管理器的所有 API
|
|
*/
|
|
|
|
export {
|
|
initWorker,
|
|
closeWorker,
|
|
getDbDirectory,
|
|
// 分析查询 API(异步)
|
|
getAvailableYears,
|
|
getMemberActivity,
|
|
getHourlyActivity,
|
|
getDailyActivity,
|
|
getWeekdayActivity,
|
|
getMonthlyActivity,
|
|
getMessageTypeDistribution,
|
|
getTimeRange,
|
|
getMemberNameHistory,
|
|
getRepeatAnalysis,
|
|
getCatchphraseAnalysis,
|
|
getNightOwlAnalysis,
|
|
getDragonKingAnalysis,
|
|
getDivingAnalysis,
|
|
getMonologueAnalysis,
|
|
getMentionAnalysis,
|
|
getLaughAnalysis,
|
|
// 会话管理 API(异步)
|
|
getAllSessions,
|
|
getSession,
|
|
closeDatabase,
|
|
} from './workerManager'
|