( groupId: string, inviteId: string )
| 286 | * 删除群组邀请 |
| 287 | */ |
| 288 | export async function deleteGroupInvite( |
| 289 | groupId: string, |
| 290 | inviteId: string |
| 291 | ): Promise<void> { |
| 292 | await request.post('/api/group/invite/deleteInvite', { |
| 293 | groupId, |
| 294 | inviteId, |
| 295 | }); |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * 创建群组面板 |