mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
12 lines
236 B
TypeScript
12 lines
236 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NODE_ENV: "development" | "production";
|
|
NEXT_PUBLIC_CLOUDFLARE_CAPTCHA_SITE_KEY: string;
|
|
CLOUDFLARE_CAPTCHA_SERCERT_KEY: string;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|