buster/apps/trigger/env.d.ts

14 lines
290 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;
}
}
}
export {};