add replaceText type to ElectronAPI

This commit is contained in:
CREDO23 2026-03-26 20:11:15 +02:00
parent f931b4cf9d
commit 6e74f462a2

View file

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