-
Notifications
You must be signed in to change notification settings - Fork 1
/
env.d.ts
47 lines (34 loc) · 929 Bytes
/
env.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
interface ProcessEnv {
[key: string]: string | undefined
}
declare global {
namespace NodeJS {
interface ProcessEnv {
NEXT_PUBLIC_PRODUCTION_URL: string
NEXT_PUBLIC_SUPABASE_URL: string
NEXT_PUBLIC_SUPABASE_ANON_KEY: string
SUPABASE_SERVICE_ROLE_KEY: string
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY: string
NEXT_STRIPE_SECRET_KEY: string
NEXT_RESEND_SECRET: string
NEXT_PUBLIC_SUPPORT_EMAIL: string
NEXT_PAYPAL_PUBLIC: string
NEXT_PAYPAL_SECRET: string
NEXT_PUBLIC_METAMASK_ADRESS: string
NEXT_COINMARKETCAP_SECRET: string
PUSHER_APP_ID: string
NEXT_PUBLIC_PUSHER_APP_KEY: string
PUSHER_SECRET: string
NEXT_TELEGRAM_BOT_TOKEN: string
NEXT_TELEGRAM_CHAT_ID: string
NEXT_PUBLIC_IS_DEBUG: string
}
}
}
/* for metamask detecting */
declare global {
interface Window {
ethereum: any
}
}
export {}