mirror of
https://github.com/hellodigua/ChatLab.git
synced 2026-04-23 01:39:37 +08:00
28 lines
591 B
TypeScript
28 lines
591 B
TypeScript
/**
|
|
* 数据库服务模块
|
|
* 统一导出入口
|
|
*/
|
|
|
|
// 核心功能
|
|
export { importData, getAllSessions, getSession, deleteSession, getDbDirectory, openDatabase, getDbPath } from './core'
|
|
|
|
// 分析查询
|
|
export {
|
|
getAvailableYears,
|
|
getMemberActivity,
|
|
getHourlyActivity,
|
|
getDailyActivity,
|
|
getWeekdayActivity,
|
|
getMessageTypeDistribution,
|
|
getTimeRange,
|
|
getMemberNameHistory,
|
|
getRepeatAnalysis,
|
|
getCatchphraseAnalysis,
|
|
getNightOwlAnalysis,
|
|
getDragonKingAnalysis,
|
|
getDivingAnalysis,
|
|
} from './analysis'
|
|
|
|
// 类型导出
|
|
export type { TimeFilter } from './analysis'
|