From e267ff387c76d8e30f3c17d7f65dda2f1bf29f06 Mon Sep 17 00:00:00 2001 From: suvarnakale Date: Tue, 29 Oct 2024 18:02:12 +0530 Subject: [PATCH] Issue #PS-2348 chore : build issue fixed --- src/types/global.d.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/types/global.d.ts b/src/types/global.d.ts index 9c760655..1d634f24 100644 --- a/src/types/global.d.ts +++ b/src/types/global.d.ts @@ -1,7 +1,9 @@ import { PlayerConfig } from "@/utils/Interfaces"; -interface Window { - GA_INITIALIZED: boolean; +declare global { + interface Window { + GA_INITIALIZED: boolean; + } } declare namespace JSX {