File size: 235 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 | 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';
}
}
|