buster/apps/trigger/env.d.ts

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 {};