新增转账消息的解析

This commit is contained in:
xuncha
2026-02-06 18:25:48 +08:00
committed by xuncha
parent 6e05e74d5e
commit bd995bc736
8 changed files with 134 additions and 21 deletions

View File

@@ -85,6 +85,7 @@ export interface ElectronAPI {
}>
getContact: (username: string) => Promise<Contact | null>
getContactAvatar: (username: string) => Promise<{ avatarUrl?: string; displayName?: string } | null>
resolveTransferDisplayNames: (chatroomId: string, payerUsername: string, receiverUsername: string) => Promise<{ payerName: string; receiverName: string }>
getContacts: () => Promise<{
success: boolean
contacts?: ContactInfo[]