mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-16 11:17:16 +00:00
24 lines
552 B
TypeScript
24 lines
552 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv extends CloudflareEnv {
|
|
GOOGLE_CLIENT_ID: string;
|
|
GOOGLE_CLIENT_SECRET: string;
|
|
AUTH_SECRET: string;
|
|
|
|
R2_ENDPOINT: string;
|
|
R2_ACCESS_KEY_ID: string;
|
|
R2_SECRET_ACCESS_KEY: string;
|
|
R2_PUBLIC_BUCKET_ADDRESS: string;
|
|
R2_BUCKET_NAME: string;
|
|
|
|
BACKEND_SECURITY_KEY: string;
|
|
BACKEND_BASE_URL: string;
|
|
|
|
CLOUDFLARE_ACCOUNT_ID: string;
|
|
CLOUDFLARE_DATABASE_ID: string;
|
|
CLOUDFLARE_D1_TOKEN: string;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|