9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NODE_ENV: 'production' | 'development' | 'test';
|
|
|
|
NEXT_PUBLIC_BASE_URL: string;
|
|
NEXT_PUBLIC_BACKEND_BASE_URL: string;
|
|
}
|
|
}
|