(params: {
groupId?: string;
converseId: string;
messageId: string;
})
| 161 | * @returns 消息附近的信息 |
| 162 | */ |
| 163 | export async function fetchNearbyMessage(params: { |
| 164 | groupId?: string; |
| 165 | converseId: string; |
| 166 | messageId: string; |
| 167 | }): Promise<ChatMessage[]> { |
| 168 | const { data } = await request.post( |
| 169 | '/api/chat/message/fetchNearbyMessage', |
| 170 | params |
| 171 | ); |
| 172 | |
| 173 | return data; |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * 增加表情行为 |
nothing calls this directly
no outgoing calls
no test coverage detected