forked from cosmic/scythe
1
0
Fork 0

Merge pull request 'chore: add env.d.ts file' (#2) from ananas/scythe:chore/env-d-file into main

Reviewed-on: cosmic/scythe#2
This commit is contained in:
cosmic 2025-03-20 06:24:50 +00:00
commit 88ad4744ae
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;
}
}