i did stuff

This commit is contained in:
grngxd 2025-07-31 14:45:38 +01:00
parent 67d53818f3
commit 3fb2883091
8 changed files with 105 additions and 10 deletions

3
globals.d.ts vendored
View file

@ -1,5 +1,8 @@
declare module "bun" {
interface Env {
TOKEN: string;
API: string;
DB_URL: string;
DB_TYPE: "sqlite" | "postgres";
}
}