aboutsummaryrefslogtreecommitdiff
path: root/src/app.d.ts
blob: 9f4467dd64cb3fc1e17b0cf6a41490fc422bfbe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/// <reference types="@sveltejs/kit" />

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

	interface Locals {
		sid: string | undefined
	}

	// interface PageData { }

	interface Platform {
		env: {
			DISCORD_CLIENT_ID: string | undefined
			SKYBLOCK_STATS_API_KEY: string | undefined
		}
		context: {
			waitUntil(promise: Promise<any>): void
		}
	}

}