refactor: ids should be string

This commit is contained in:
Ananas 2025-03-17 13:51:08 +00:00
parent 22894f5439
commit d7976aeedb
1 changed files with 5 additions and 5 deletions

10
env.d.ts vendored
View File

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