| 19 | |
| 20 | // 文件附件类型 |
| 21 | export interface FileAttachment { |
| 22 | id: string |
| 23 | name: string |
| 24 | type: string // MIME type |
| 25 | size: number |
| 26 | localPath: string // 本地文件路径(相对于attachments目录) |
| 27 | createdAt: number // 创建时间 |
| 28 | } |
| 29 | |
| 30 | export interface ChatMessage { |
| 31 | id: string |
nothing calls this directly
no outgoing calls
no test coverage detected