mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-05 10:29:58 +02:00
13 lines
207 B
TypeScript
13 lines
207 B
TypeScript
import type { D1Migration } from "@cloudflare/vitest-pool-workers";
|
|
|
|
declare global {
|
|
namespace Cloudflare {
|
|
interface Env {
|
|
INGEST_KEY: string;
|
|
TEST_MIGRATIONS: D1Migration[];
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|