一些更新

This commit is contained in:
cc
2026-03-15 20:28:46 +08:00
parent 5494490ff8
commit ef97202867
3 changed files with 44 additions and 38 deletions

View File

@@ -221,6 +221,7 @@ export interface ElectronAPI {
}>
getMyAvatarUrl: () => Promise<{ success: boolean; avatarUrl?: string; error?: string }>
downloadEmoji: (cdnUrl: string, md5?: string) => Promise<{ success: boolean; localPath?: string; error?: string }>
searchMessages: (keyword: string, sessionId?: string, limit?: number, offset?: number, beginTimestamp?: number, endTimestamp?: number) => Promise<{ success: boolean; messages?: Message[]; error?: string }>
close: () => Promise<boolean>
getSessionDetail: (sessionId: string) => Promise<{
success: boolean