mirror of
https://github.com/sanidhyy/duolingo-clone.git
synced 2025-05-17 13:55:52 +08:00
22 lines
509 B
TypeScript
22 lines
509 B
TypeScript
// This file is needed to support autocomplete for process.env
|
|
export {};
|
|
|
|
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
// neon db uri
|
|
DATABASE_URL: string;
|
|
|
|
// stripe api key and webhook
|
|
STRIPE_API_SECRET_KEY: string;
|
|
STRIPE_WEBHOOK_SECRET: string;
|
|
|
|
// public app url
|
|
NEXT_PUBLIC_APP_URL: string;
|
|
|
|
// clerk admin user id(s) (separated by comma(,) and space( )). Ex: "user_123, user_456, user_789"
|
|
CLERK_ADMIN_IDS: string;
|
|
}
|
|
}
|
|
}
|