mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-10 12:27:44 +00:00
* feat: add cloudflare worker basic tests * chore: fix conflict --------- Co-authored-by: Bereket Engida <bekacru@gmail.com>
8 lines
220 B
TypeScript
8 lines
220 B
TypeScript
declare module "cloudflare:test" {
|
|
// Controls the type of `import("cloudflare:test").env`
|
|
interface ProvidedEnv extends Env {
|
|
TEST_MIGRATIONS: D1Migration[]; // Defined in `vitest.config.mts`
|
|
DB: D1Database;
|
|
}
|
|
}
|