your personal website on atproto - mirror blento.app
at switch-map 23 lines 494 B view raw
1import { KVNamespace } from '@cloudflare/workers-types'; 2 3// See https://svelte.dev/docs/kit/types#app.d.ts 4// for information about these interfaces 5declare global { 6 namespace App { 7 // interface Error {} 8 // interface Locals {} 9 // interface PageData {} 10 // interface PageState {} 11 interface Platform { 12 env: { 13 USER_DATA_CACHE: KVNamespace; 14 CUSTOM_DOMAINS: KVNamespace; 15 }; 16 } 17 } 18} 19 20import type {} from '@atcute/atproto'; 21import type {} from '@atcute/bluesky'; 22 23export {};