From 97b12972eecac83cdc743ed96bffcbb425e6df39 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Mon, 16 Sep 2024 16:21:00 -0400 Subject: [PATCH] shut ts up --- frontend/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/index.ts b/frontend/src/index.ts index 212f81d0..2ee018e0 100644 --- a/frontend/src/index.ts +++ b/frontend/src/index.ts @@ -2,7 +2,6 @@ interface Window { // Shut up TS SP_REACTDOM: any; - App: any; // TODO type BFinishedInitStageOne in @decky/ui } (async () => { @@ -10,6 +9,7 @@ interface Window { console.time('[Decky:Boot] Waiting for SteamApp init stage 1 to finish...'); + // @ts-expect-error TODO type BFinishedInitStageOne in @decky/ui while (!window.App?.BFinishedInitStageOne()) { await new Promise((r) => setTimeout(r, 0)); // Can't use DFL sleep here. }