chore: initialize qiming workspace repository

This commit is contained in:
Codex
2026-05-29 14:22:48 +08:00
commit bfd67a0f2c
10750 changed files with 1885711 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
/**
* 事件常量
* 用于事件订阅和发布时的类型安全引用
*
* 与 PC 端 @/constants/event.constants.tsx 保持一致
*/
import { EventTypeEnum } from '@/types/enums/event';
export const EVENT_TYPE = {
NewNotifyMessage: EventTypeEnum.NewNotifyMessage, // 新消息
RefreshChatMessage: EventTypeEnum.RefreshChatMessage, // 刷新会话
RefreshFileList: EventTypeEnum.RefreshFileList, // 刷新文件列表
ChatFinished: EventTypeEnum.ChatFinished, // 会话结束
};