your personal website on atproto - mirror
blento.app
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 };
15 }
16 }
17}
18
19import type {} from '@atcute/atproto';
20import type {} from '@atcute/bluesky';
21
22export {};