buster/packages/search/env.d.ts

10 lines
180 B
TypeScript
Raw Normal View History

2025-09-02 21:50:43 +08:00
declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV?: 'development' | 'production' | 'test';
TURBOPUFFER_API_KEY?: string;
}
}
}
export {};