Statusphere, but in atcute and SvelteKit
atproto
svelte
sveltekit
drizzle
atcute
typescript
1// See https://svelte.dev/docs/kit/types#app.d.ts
2
3import type { AuthContext } from '$lib/server/auth';
4
5// for information about these interfaces
6declare global {
7 namespace App {
8 // interface Error {}
9 interface Locals {
10 auth?: AuthContext;
11 }
12 // interface PageData {}
13 // interface PageState {}
14 // interface Platform {}
15 }
16}
17
18export {};