forked from NotNet/gluestick
13 lines
224 B
TypeScript
13 lines
224 B
TypeScript
|
declare global {
|
||
|
namespace NodeJS {
|
||
|
interface ProcessEnv {
|
||
|
DISCORD_CLIENT_ID: string;
|
||
|
DISCORD_CLIENT_SECRET: string;
|
||
|
DISCORD_ALLOWED_GUILDS: string;
|
||
|
BASE_DOMAIN: string;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export {};
|