8 lines
No EOL
138 B
TypeScript
8 lines
No EOL
138 B
TypeScript
declare module "bun" {
|
|
interface Env {
|
|
TOKEN: string;
|
|
API: string;
|
|
DB_URL: string;
|
|
DB_TYPE: "sqlite" | "postgres";
|
|
}
|
|
} |