mirror of https://github.com/buster-so/buster.git
11 lines
203 B
TypeScript
11 lines
203 B
TypeScript
declare global {
|
|||
namespace NodeJS {
|
|||
interface ProcessEnv {
|
|||
DATABASE_URL: string;
|
|||
OPENAI_API_KEY: string;
|
|||
NODE_ENV?: 'development' | 'production' | 'test';
|
|||
}
|
|||
}
|
|||
}
|
|||
|
|||
export {};
|