mirror of https://github.com/buster-so/buster.git
16 lines
333 B
TypeScript
16 lines
333 B
TypeScript
declare global {
|
|||
namespace NodeJS {
|
|||
interface ProcessEnv {
|
|||
BRAINTRUST_KEY: string;
|
|||
PATH: string;
|
|||
HOME: string;
|
|||
OPENAI_API_KEY: string;
|
|||
ANTHROPIC_API_KEY: string;
|
|||
ENVIRONMENT: string;
|
|||
DATABASE_URL: string;
|
|||
NODE_ENV?: 'development' | 'production' | 'test';
|
|||
}
|
|||
}
|
|||
}
|
|||
|
|||
export {};
|