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