14 lines
No EOL
199 B
TypeScript
14 lines
No EOL
199 B
TypeScript
declare module "bun" {
|
|
interface Env {
|
|
// discord
|
|
TOKEN: string;
|
|
CLIENT_ID: string;
|
|
|
|
// db
|
|
DB_URL: string;
|
|
DB_TYPE: "sqlite" | "postgres";
|
|
|
|
// web
|
|
API: string;
|
|
}
|
|
} |