10 lines
127 B
TypeScript
10 lines
127 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NEXT_PUBLIC_BACKEND_URI: string;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {}
|