extremely claude-assisted go game based on atproto! working on cleaning up and giving a more unique design, still has a bit of a slop vibe to it.
at master 24 lines 507 B view raw
1// See https://kit.svelte.dev/docs/types#app 2// for information about these interfaces 3declare global { 4 namespace App { 5 // interface Error {} 6 // interface Locals {} 7 // interface PageData {} 8 // interface PageState {} 9 interface Platform { 10 env?: { 11 DB: D1Database; 12 SESSIONS_KV: KVNamespace; 13 STATES_KV: KVNamespace; 14 SESSION_SECRET: string; 15 PRIVATE_KEY_JWK: string; 16 PUBLIC_BASE_URL: string; 17 }; 18 context?: ExecutionContext; 19 caches?: CacheStorage; 20 } 21 } 22} 23 24export {};