mirror of
https://github.com/status-im/status-web.git
synced 2026-08-30 22:01:15 +00:00
12 lines
304 B
TypeScript
12 lines
304 B
TypeScript
import type { serverEnv } from './src/config/env.server.mjs'
|
|||
|
|
|
||
|
|
type Env = typeof serverEnv
|
||
|
|
|
||
|
|
declare global {
|
||
|
|
namespace NodeJS {
|
||
|
|
/* eslint-disable @typescript-eslint/no-empty-object-type */
|
||
|
|
interface ProcessEnv extends Env {}
|
||
|
|
/* eslint-enable @typescript-eslint/no-empty-object-type */
|
||
|
|
}
|
||
|
|
}
|