Files
2025-03-20 14:41:31 +05:00

12 lines
284 B
TypeScript

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;
}
}