From 6e74f462a2ab133d13a6c81365ce694523573197 Mon Sep 17 00:00:00 2001 From: CREDO23 Date: Thu, 26 Mar 2026 20:11:15 +0200 Subject: [PATCH] add replaceText type to ElectronAPI --- surfsense_web/types/window.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/surfsense_web/types/window.d.ts b/surfsense_web/types/window.d.ts index c8b4c004a..65ab135ea 100644 --- a/surfsense_web/types/window.d.ts +++ b/surfsense_web/types/window.d.ts @@ -11,6 +11,7 @@ interface ElectronAPI { getAppVersion: () => Promise; onDeepLink: (callback: (url: string) => void) => () => void; getQuickAskText: () => Promise; + replaceText: (text: string) => Promise; } declare global {