Merge branch 'main' into feat/search-suggestions

This commit is contained in:
Alger
2025-09-13 23:41:26 +08:00
committed by GitHub
23 changed files with 1861 additions and 1084 deletions

View File

@@ -21,6 +21,7 @@ interface API {
onDownloadComplete: (callback: (success: boolean, filePath: string) => void) => void;
onLanguageChanged: (callback: (locale: string) => void) => void;
removeDownloadListeners: () => void;
importCustomApiPlugin: () => Promise<{ name: string; content: string } | null>;
invoke: (channel: string, ...args: any[]) => Promise<any>;
getSearchSuggestions: (keyword: string) => Promise<any>;
}