user api fetch request created

This commit is contained in:
Sanidhya Kumar Verma
2024-08-30 07:27:34 +00:00
committed by GitHub
parent 8f0a66ba39
commit 7f0d38eb3c
5 changed files with 95 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
// This file is needed to support autocomplete for process.env
export {};
declare global {
namespace NodeJS {
interface ProcessEnv {
// clerk publishable key
EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY: string;
// postgres db url (neon db)
DATABASE_URL: string;
}
}
}