mirror of
https://github.com/pawelmalak/snippet-box.git
synced 2025-12-21 21:33:10 +01:00
12 lines
159 B
TypeScript
12 lines
159 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
PORT: number;
|
|
NODE_ENV: string;
|
|
JWT_SECRET: string;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|