Files
697ef10027 Add apps/*, and packages/* (#655)
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>
2025-05-09 01:42:28 +09:00

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 */
}
}