mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-10 20:30:41 +00:00
13 lines
236 B
TypeScript
13 lines
236 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
[key: string]: string | undefined;
|
|
DATABASE: D1Database;
|
|
VECTORIZE_INDEX: VectorizeIndex;
|
|
AI: any;
|
|
RATELIMITER: any;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|