From 28b483c5dd9d61796ef825d38666039761ffd99e Mon Sep 17 00:00:00 2001 From: h1divp <71522316+h1divp@users.noreply.github.com> Date: Sun, 18 Aug 2024 01:44:14 +0900 Subject: [PATCH] another potential type fix to get tests to work --- client/app/types/env.d.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 client/app/types/env.d.ts diff --git a/client/app/types/env.d.ts b/client/app/types/env.d.ts new file mode 100644 index 000000000..c9ce7c420 --- /dev/null +++ b/client/app/types/env.d.ts @@ -0,0 +1,5 @@ +declare module '@env' { + +export const EXPO_IP: string; +export const API_KEY, AUTH_DOMAIN, PROJECT_ID, STORAGE_BUCKET, MESSAGING_SENDER_ID, APP_ID: string; +}