Files
2026-06-24 16:12:16 +02:00

14 lines
238 B
TypeScript

declare global {
namespace NodeJS {
interface ProcessEnv {
OPENAI_API_KEY: string;
PINECONE_API_KEY: string;
PINECONE_INDEX: string;
PINECONE_NAMESPACE: string;
API_PORT: string;
}
}
}
export {}