// See https://kit.svelte.dev/docs/types#app // for information about these interfaces declare global { namespace App { // interface Error {} // interface Locals {} // interface PageData {} // interface PageState {} interface Platform { env?: { DB: D1Database; SESSIONS_KV: KVNamespace; STATES_KV: KVNamespace; SESSION_SECRET: string; PRIVATE_KEY_JWK: string; PUBLIC_BASE_URL: string; }; context?: ExecutionContext; caches?: CacheStorage; } } } export {};