12 lines
171 B
TypeScript
12 lines
171 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
API_PORT: string;
|
|
WEAVIATE_URL: string;
|
|
FRONTEND_ORIGIN: string;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {}
|