mirror of https://github.com/buster-so/buster.git
12 lines
248 B
TypeScript
12 lines
248 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 {};
|