buster/apps/cli/env.d.ts

18 lines
368 B
TypeScript
Raw Normal View History

2025-08-05 06:16:00 +08:00
/// <reference types="node" />
declare namespace NodeJS {
interface ProcessEnv {
// API Configuration
BUSTER_API_URL: string;
BUSTER_API_KEY?: string;
// CLI Configuration
BUSTER_CONFIG_DIR?: string;
BUSTER_CACHE_DIR?: string;
// Feature Flags
BUSTER_AUTO_UPDATE?: string;
BUSTER_TELEMETRY_DISABLED?: string;
}
}