feat: chat首页渲染优化

This commit is contained in:
rd
2025-08-25 18:01:04 +08:00
parent 13670acc9a
commit 6926a43d8a
14 changed files with 544 additions and 343 deletions

7
src/types/chat.ts Normal file
View File

@ -0,0 +1,7 @@
declare global {
namespace CHAT {
export type TInputInfo = {
message: string;
};
}
}