mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-10 19:52:53 +00:00
11 lines
135 B
TypeScript
11 lines
135 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NODE_ENV?: string;
|
|
PORT?: string;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|