chore: add env.d.ts file #2

Merged
cosmic merged 3 commits from :chore/env-d-file into main 2025-03-20 06:24:51 +00:00
1 changed files with 10 additions and 0 deletions
Showing only changes of commit 22894f5439 - Show all commits

10
env.d.ts vendored Normal file
View File

@ -0,0 +1,10 @@
module "bun" {
interface Env {
TOKEN: string;
WELCOME: number;
GOODBYE: number;
GUILD: number;
BAD_ROLE: number;
BOT_ROLE: number;
}
}