gluestick/environment.d.ts
2023-04-24 22:13:35 -07:00

12 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 {};