aboutsummaryrefslogtreecommitdiff
path: root/src/app.d.ts
blob: 97586370eacf6344c9a0008d92b7afa63f2c61e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import type { AniList } from '$lib/AniList';
import 'bun-types';

// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
	namespace App {
		// interface Error {}

		interface Locals {
			user: AniList;
		}

		// interface PageData {}
		// interface Platform {}
	}
}

export {};