mirror of
https://github.com/status-im/status-web.git
synced 2026-08-30 05:41:09 +00:00
Co-authored-by: marcelines <marcio@status.im> Co-authored-by: Felicio Mununga <felicio@users.noreply.github.com> Co-authored-by: Jakub Kotula <520927+jkbktl@users.noreply.github.com>
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 */
|
|
}
|
|
}
|