buster/apps/momentic/env.d.ts

11 lines
177 B
TypeScript
Raw Normal View History

2025-09-18 03:28:19 +08:00
declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV?: 'development' | 'production' | 'test';
2025-09-18 03:28:37 +08:00
MOMENTIC_API_KEY: string;
2025-09-18 03:28:19 +08:00
}
}
}
export {};