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