discord-bot/globals.d.ts
2025-07-31 14:45:38 +01:00

8 lines
No EOL
138 B
TypeScript

declare module "bun" {
interface Env {
TOKEN: string;
API: string;
DB_URL: string;
DB_TYPE: "sqlite" | "postgres";
}
}