[WIP] book tracker on the atmosphere~
at main 375 B view raw
1// See https://svelte.dev/docs/kit/types#app.d.ts 2// for information about these interfaces 3import type { Agent } from '@atproto/api'; 4 5declare global { 6 namespace App { 7 interface Locals { 8 agent: Agent | null; 9 user: { did: string } | null; 10 } 11 // interface Error {} 12 // interface PageData {} 13 // interface PageState {} 14 // interface Platform {} 15 } 16} 17 18export {};