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

10
env.d.ts vendored Normal file
View File

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