-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.d.ts
31 lines (30 loc) · 824 Bytes
/
index.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
/* eslint-disable no-unused-vars */
declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV: "development" | "production" | "test";
PORT: number;
TZ: string;
REDIS_URL: string;
NEXT_PUBLIC_REDIS_URL: string;
REDIS_SECRET: string;
PUSHER_ID: string;
PUSHER_KEY: string;
PUSHER_SECRET: string;
NEXT_PUBLIC_PUSHER_KEY: string;
PUSHER_SECRET_KEY: string;
ENCRYPTION_KEY: string;
NEXT_PUBLIC_ENCRYPTION_KEY: string;
SIGNING_KEY: string;
NEXT_PUBLIC_SIGNING_KEY: string;
URL: string;
NEXT_PUBLIC_URL: string;
WEBSOCKET_KEY: string;
NEXT_PUBLIC_WEBSOCKET_URL: string;
WEBSOCKET_URL: string;
FILESTACK_API_KEY: string;
NEXT_PUBLIC_FILESTACK_API_KEY: string;
}
}
}
export {};