From cb4aaf6a97f233e4cd54330b28deef70fc71d1f9 Mon Sep 17 00:00:00 2001 From: Reto Brunner Date: Fri, 10 May 2024 13:21:18 +0200 Subject: [PATCH] client: remove setAppBadge and clearAppBadge They already ship with typescript's lib.dom.d.ts --- client/js/types.d.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/client/js/types.d.ts b/client/js/types.d.ts index 9ec09338..c8757ec1 100644 --- a/client/js/types.d.ts +++ b/client/js/types.d.ts @@ -9,10 +9,6 @@ import {LinkPreview, SharedMsg} from "../../shared/types/msg"; interface LoungeWindow extends Window { g_TheLoungeRemoveLoading?: () => void; - navigator: Window["navigator"] & { - setAppBadge?: (highlightCount: number) => void; - clearAppBadge?: () => void; - }; } type ClientUser = SharedUser;