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