mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-13 07:03:45 +00:00
12 lines
212 B
TypeScript
12 lines
212 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
[key: string]: string | undefined;
|
|
DATABASE: D1Database;
|
|
VECTORIZE_INDEX: VectorizeIndex;
|
|
AI: any;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|