bun-discord-bot/globals.d.ts

8 lines
139 B
TypeScript
Raw Normal View History

declare module "bun" {
interface Env {
DISCORD_BOT_TOKEN: string;
BUN_ONLY_CHANNEL_ID: string;
MESSAGE_PREFIX: string;
}
}