From 6ba42571096bac9cd661dda5ce24c655bda0fbc1 Mon Sep 17 00:00:00 2001 From: "Mr. Robot" Date: Sun, 27 Oct 2024 11:21:29 +0600 Subject: [PATCH] refactor(types): env variables --- types/environment.d.ts => environment.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename types/environment.d.ts => environment.d.ts (93%) diff --git a/types/environment.d.ts b/environment.d.ts similarity index 93% rename from types/environment.d.ts rename to environment.d.ts index 8e3e2a1..b30d296 100644 --- a/types/environment.d.ts +++ b/environment.d.ts @@ -14,7 +14,7 @@ declare global { readonly NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID: string readonly NEXT_PUBLIC_FIREBASE_APP_ID: string readonly NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID: string - readonly NEXT_TELEMETRY_DISABLED: boolean + readonly NEXT_TELEMETRY_DISABLED: string } } }