8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NEXT_PUBLIC_APP_URL: string;
|
|
NEXT_PUBLIC_DEFAULT_KOMGA_URL?: string;
|
|
NEXT_PUBLIC_APP_VERSION: string;
|
|
}
|
|
}
|