feat: Init

This commit is contained in:
beilunyang
2024-12-16 01:35:08 +08:00
commit cc7e5003c5
73 changed files with 15001 additions and 0 deletions

11
types.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
/// <reference types="@cloudflare/workers-types" />
declare global {
interface CloudflareEnv {
DB: D1Database;
}
type Env = CloudflareEnv
}
export type { Env }