11 lines
No EOL
174 B
TypeScript
11 lines
No EOL
174 B
TypeScript
declare module "bun" {
|
|
interface Env {
|
|
// discord
|
|
TOKEN: string;
|
|
CLIENT_ID: string;
|
|
|
|
// stereo
|
|
DB_URL: string;
|
|
DB_TYPE: "sqlite" | "postgres";
|
|
}
|
|
} |