| 7 | |
| 8 | // 消息类型定义 |
| 9 | interface ExtensionMessage { |
| 10 | type: "CHAT_INPUT" | "CHAT_SEND" | "CHAT_INSERT_IMAGE" |
| 11 | payload: { |
| 12 | text?: string |
| 13 | images?: string[] |
| 14 | autoSend?: boolean |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | interface ChatResponse { |
| 19 | type: "CHAT_RESPONSE" |
nothing calls this directly
no outgoing calls
no test coverage detected