From aa47fd1a098fbebd9f5dd47e1edd08d6a8b84c0e Mon Sep 17 00:00:00 2001 From: Ayushman Chhabra <14110965+ayushmanchhabra@users.noreply.github.com> Date: Wed, 20 Sep 2023 01:35:45 -0400 Subject: [PATCH] fix: explicit type --- src/types/nw.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/nw.d.ts b/src/types/nw.d.ts index b1d5c99..586d330 100644 --- a/src/types/nw.d.ts +++ b/src/types/nw.d.ts @@ -1,6 +1,6 @@ declare global { interface Window { - nw: any; + nw: object; } }