seedling/source/e2e/global.d.ts
Roman Jaroš bc0c275e70
Some checks failed
forgejo/Procyon/seedling/pipeline/head There was a failure building this commit
forgejo/Procyon/seedling/pipeline/pr-master There was a failure building this commit
Rename source folders
2024-01-10 21:08:53 +00:00

11 lines
168 B
TypeScript

declare global {
namespace NodeJS {
interface ProcessEnv {
APP_PORT: string;
HOST_IP: string;
SELENIUM_SERVER_URL: string;
}
}
}
export default global;