From 32eb35135fc8c677aeaf3e2d881630d6e0b4b0a1 Mon Sep 17 00:00:00 2001 From: Adilet Gylzhigit <108686012+AdiletGylzhigit@users.noreply.github.com> Date: Sun, 28 May 2023 02:23:16 -0800 Subject: [PATCH] put: union type on any type --- types/global.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/global.d.ts b/types/global.d.ts index 4d5df507..404b6176 100644 --- a/types/global.d.ts +++ b/types/global.d.ts @@ -2,7 +2,7 @@ // for style loader declare module '*.css' { - const styles: any; + const styles: any | null; export = styles; }