新增查看单个群成员消息

This commit is contained in:
xuncha
2026-03-16 17:51:13 +08:00
parent f2b1b07f58
commit 79e40f6a53
6 changed files with 701 additions and 25 deletions

View File

@@ -494,6 +494,19 @@ export interface ElectronAPI {
}
error?: string
}>
getGroupMemberMessages: (
chatroomId: string,
memberUsername: string,
options?: { startTime?: number; endTime?: number; limit?: number; cursor?: number }
) => Promise<{
success: boolean
data?: {
messages: Message[]
hasMore: boolean
nextCursor: number
}
error?: string
}>
exportGroupMembers: (chatroomId: string, outputPath: string) => Promise<{
success: boolean
count?: number