mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-17 12:20:04 +00:00
8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
import { TypeOf } from "zod";
|
|
import { zodEnv } from "~/lib/environment";
|
|
|
|
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv extends Env, TypeOf<typeof zodEnv> {}
|
|
}
|
|
}
|