Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
235 Bytes
declare const __DEV__: boolean;
declare namespace NodeJS {
// override the type set by Next (in examples), which sets NODE_ENV to readonly globally
interface ProcessEnv {
NODE_ENV: 'development' | 'production' | 'test';
}
}