seedling/source/e2e/global.d.ts
Roman Jaroš a260d611bd
All checks were successful
forgejo/Procyon/seedling/pipeline/pr-master This commit looks good
forgejo/Procyon/seedling/pipeline/head This commit looks good
Rename source folders
2024-01-11 07:44:22 +01: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;