buster/packages/sdk/env.d.ts

11 lines
266 B
TypeScript
Raw Permalink Normal View History

2025-08-28 05:53:53 +08:00
declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV?: 'development' | 'production' | 'test';
// SDK doesn't require any environment variables by default
// Client applications will provide configuration
}
}
}
export {};