Files
memesearch-backend/env.d.ts
T
2026-06-24 15:57:01 +02:00

12 lines
171 B
TypeScript

declare global {
namespace NodeJS {
interface ProcessEnv {
API_PORT: string;
WEAVIATE_URL: string;
FRONTEND_ORIGIN: string;
}
}
}
export {}