supermemory/apps/web/env.d.ts
2024-03-30 14:50:42 -07:00

12 lines
No EOL
233 B
TypeScript

declare global {
namespace NodeJS {
interface ProcessEnv {
[key: string]: string | undefined;
DATABASE: D1Database;
VECTORIZE_INDEX: VectorizeIndex;
AI: any
}
}
}
export { };