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