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

// 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 {};