Files
2025-03-20 14:39:30 +05:00

10 lines
221 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;
}
}