Files

12 lines
304 B
TypeScript
Raw Permalink Normal View History

2025-05-09 01:42:28 +09:00
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 */
}
}