export interface Env { DB_STRING?: string; SERVER_URL?: string; TIX_TAX_ROOM_NAME?: string; } declare global { namespace NodeJS{ interface ProcessEnv extends Env {} } }