Files
Open-Assistant/website/types/env.d.ts
T
notmd a6fcf0dc1e wip
2023-01-25 17:44:59 +07:00

9 lines
177 B
TypeScript

declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV: "development" | "production";
NEXT_PUBLIC_CLOUDFARE_CAPTCHA_SITE_KEY: string;
}
}
}