add onQuickAskText type to ElectronAPI

This commit is contained in:
CREDO23 2026-03-24 19:24:02 +02:00
parent 45e9113522
commit 032ccd9541

View file

@ -10,6 +10,7 @@ interface ElectronAPI {
openExternal: (url: string) => void;
getAppVersion: () => Promise<string>;
onDeepLink: (callback: (url: string) => void) => () => void;
onQuickAskText: (callback: (text: string) => void) => () => void;
}
declare global {