seedling/source/selenium/global.d.ts
Roman Jaroš ecc0f77704
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
Replace UI module with Next.js
2023-12-29 12:09:01 +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;