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