forked from cosmic/scythe
1
0
Fork 0

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" { 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;
} }
} }