buster/packages/sandbox/env.d.ts

11 lines
177 B
TypeScript
Raw Normal View History

2025-07-19 04:26:46 +08:00
declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV?: 'development' | 'production' | 'test';
2025-07-19 04:32:12 +08:00
DAYTONA_API_KEY?: string;
2025-07-19 04:26:46 +08:00
}
}
}
export {};