From d7976aeedb6eb97588de84f510bb68096e33a142 Mon Sep 17 00:00:00 2001 From: ananas Date: Mon, 17 Mar 2025 13:51:08 +0000 Subject: [PATCH] refactor: ids should be string --- env.d.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/env.d.ts b/env.d.ts index ca3b8f7..1d0fe11 100644 --- a/env.d.ts +++ b/env.d.ts @@ -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; } } \ No newline at end of file