12 lines
168 B
TypeScript
12 lines
168 B
TypeScript
|
declare global {
|
||
|
namespace NodeJS {
|
||
|
interface ProcessEnv {
|
||
|
APP_PORT: string;
|
||
|
HOST_IP: string;
|
||
|
SELENIUM_SERVER_URL: string;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default global;
|