-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.d.ts
More file actions
38 lines (31 loc) · 945 Bytes
/
Copy pathenv.d.ts
File metadata and controls
38 lines (31 loc) · 945 Bytes
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
declare namespace NodeJS {
interface ProcessEnv {
DISCORD_TOKEN: string;
DISCORD_CLIENT_ID: string;
DISCORD_GUILD_ID: string;
DISCORD_LOG_WEBHOOK_URL?: string;
LAVALINK_IDENTIFIER: string;
LAVALINK_HOST: string;
LAVALINK_PORT: string;
LAVALINK_PASSWORD: string;
LAVALINK_SECURE: string;
EMBED_COLOR_NORMAL: string;
EMBED_COLOR_ERROR: string;
LOG_PREFIX: string;
DEFAULT_VOLUME?: string;
NODE_ENV?: 'development' | 'production';
PLAYER_STATE_PATH?: string;
KOREANBOTS_TOKEN?: string;
KOREANBOTS_CLIENT_ID?: string;
KOREANBOTS_UPDATE_INTERVAL?: string;
PROGRESS_CIRCLE_START?: string;
PROGRESS_CIRCLE_MIDDLE?: string;
PROGRESS_FILLED_START?: string;
PROGRESS_FILLED_MIDDLE?: string;
PROGRESS_UNFILLED_MIDDLE?: string;
PROGRESS_UNFILLED_END?: string;
POSTGRES_DB?: string;
POSTGRES_USER?: string;
POSTGRES_PASSWORD?: string;
}
}