mirror of https://github.com/buster-so/buster.git
16 lines
373 B
TypeScript
16 lines
373 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
DATABASE_URL: string;
|
|
BRAINTRUST_KEY: string;
|
|
TRIGGER_SECRET_KEY: string;
|
|
ENVIRONMENT: string;
|
|
NODE_ENV?: 'development' | 'production' | 'test';
|
|
BUSTER_URL: string;
|
|
BUSTER_ALERT_CHANNEL_TOKEN?: string;
|
|
BUSTER_ALERT_CHANNEL_ID?: string;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|