chore: scaffold sveltekit cloudflare app

This commit is contained in:
2026-06-05 23:25:18 +01:00
commit 6c3cef4da2
23 changed files with 21014 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
import type { User, Session } from 'better-auth/minimal';
// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces
declare global {
namespace App {
interface Platform {
env: Env;
ctx: ExecutionContext;
caches: CacheStorage;
cf?: IncomingRequestCfProperties;
}
interface Locals {
user?: User;
session?: Session;
}
// interface Error {}
// interface PageData {}
// interface PageState {}
}
}
export {};