mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-12 17:26:22 +00:00
11 lines
135 B
TypeScript
11 lines
135 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NODE_ENV?: string;
|
|
PORT?: string;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|