initial commit

This commit is contained in:
2026-02-04 19:19:24 -08:00
commit 7caeb4baea
20 changed files with 11630 additions and 0 deletions

13
src/app.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces
declare global {
namespace App {
interface Platform {
env: Env
cf: CfProperties
ctx: ExecutionContext
}
}
}
export {};