next/typings/node-ext.d.ts

8 lines
153 B
TypeScript
Raw Permalink Normal View History

declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV: ("development" | "staging" | "production" | "test") & (string & {});
}
}
}