mirror of https://github.com/buster-so/buster.git
12 lines
234 B
TypeScript
12 lines
234 B
TypeScript
|
declare global {
|
||
|
namespace NodeJS {
|
||
|
interface ProcessEnv {
|
||
|
RERANK_API_KEY: string;
|
||
|
RERANK_MODEL: string;
|
||
|
RERANK_BASE_URL: string;
|
||
|
NODE_ENV?: 'development' | 'production' | 'test';
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export {};
|