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 5 additions and 5 deletions
Showing only changes of commit d7976aeedb - Show all commits

10
env.d.ts vendored
View File

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