seedling/source/e2e/global.d.ts

12 lines
168 B
TypeScript
Raw Permalink Normal View History

2023-12-28 21:58:08 +00:00
declare global {
namespace NodeJS {
interface ProcessEnv {
APP_PORT: string;
HOST_IP: string;
SELENIUM_SERVER_URL: string;
}
}
}
export default global;