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

// // See https://kit.svelte.dev/docs/typescript
// // for information about these interfaces
declare namespace App {
	interface Locals {
		sid: string | undefined
	}

	// interface Platform {}

	interface Session {
		sid: string | undefined
	}

	// interface Stuff {}
}