[READ-ONLY] Mirror of https://github.com/flo-bit/skywatched. review movies and tv shows, based on at proto
skywatched.app
397 B
15 lines
1import type { Agent, AtpBaseClient } from '@atproto/api';
2import type { ProfileViewDetailed } from '@atproto/api/dist/client/types/app/bsky/actor/defs';
3
4// See https://svelte.dev/docs/kit/types#app.d.ts
5// for information about these interfaces
6declare global {
7 namespace App {
8 interface Locals {
9 agent: Agent | AtpBaseClient | undefined;
10 user: ProfileViewDetailed;
11 }
12 }
13}
14
15export {};