buster/apps/cli/env.d.ts

13 lines
249 B
TypeScript

declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV?: 'development' | 'production' | 'test';
// Add CLI-specific environment variables here
API_URL?: string;
AUTH_TOKEN?: string;
}
}
}
export {};