This commit is contained in:
2025-03-20 14:41:31 +05:00
commit 1c31fce139
20 changed files with 1048 additions and 0 deletions
Vendored
+11
View File
@@ -0,0 +1,11 @@
declare namespace NodeJS {
interface ProcessEnv {
// readonly PORT: number;
readonly DB_URL: string;
readonly JWT_SECRET: string;
readonly JWT_EXPIRATION: string;
readonly HMAC_SECRET: string;
readonly API_URL: string;
readonly COMPANY_ID: string;
}
}